<!--Add this DataTemplate to the Window's ResourceDictionary-->
<DataTemplate x:Key="pageNumberDataTemplate">
<DockPanel Margin="5">
<!--This TextBlock's Text property is bound to the ReportPagePresenter's PhysicalPageNumber property-->
<TextBlock
xmlns:igReporting="http://infragistics.com/Reporting"
DockPanel.Dock="Right"
Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type igReporting:ReportPagePresenter}}, Path=PhysicalPageNumber}" />
<TextBlock Text="Page Number: " DockPanel.Dock="Right" />
<!--This ContentPresenter will display the Header property of the Report or EmbeddedVisualReportSection object.-->
<ContentPresenter Content="{Binding}" />
</DockPanel>
</DataTemplate>