This question is locked. New answers and comments are not allowed.
I have seen plenty of examples on how to add PageFields to a RadDocument using c#, but I can't figure out how to do it using xaml. Does anyone know how to add a Page field to a Header/Footer in xaml. Below is an example of the code I am using with a comment where I need my PageField to go.
<telerik:RadDocument x:Key="Footer_Base"> <telerik:Section> <telerik:Table Borders="0 None #00FFFFFF"> <telerik:TableRow> <telerik:TableCell Padding="{StaticResource HeaderFooter_TableCell_Padding}"> <telerik:Paragraph> <telerik:Span Text="Presented by ??" FontSize="{StaticResource HeaderFooter_Span_FontSize}" ForeColor="{StaticResource HeaderFooter_Forecolor}" /> </telerik:Paragraph> </telerik:TableCell> <telerik:TableCell Padding="{StaticResource HeaderFooter_TableCell_Padding}" TextAlignment="Right"> <telerik:Paragraph>
<!-- WHERE I NEED PAGEFIELD --> </telerik:Paragraph> </telerik:TableCell> </telerik:TableRow> </telerik:Table> </telerik:Section> </telerik:RadDocument>