I have a FlowDocument
with several Paragraps
and Tables
, this FlowDocument
should repeat itself presenting the exact copy after the middle of the page. I'm using 2 Sections
to achieve that.
To make thing easy, I'm trying to bind a section to another:
<Section x:Name="MainSection" Padding="10">
<!-- Lots of things -->
</Section>
<Section Padding="10" Blocks="{Binding ElementName=MainSection, Path=Blocks}"/>
But unfortunately, Blocks
does not have an accessible setter. How could I replicate the contents without having to duplicate my XAML?
PS: I'm not using C# code to create the page visual, only to fill in the paragraphs and tables.