I'm using a FlowDocument to print in WPF using the method described here but I'm running into problems trying to span multiple pages. Just under the root of the FlowDocument, I have a textblock, eg:
<Paragraph>
<TextBlock Text="{Binding Directions}" />
</Paragraph>
If the text it's bound to is longer than one page, only one page is displayed and the rest is just truncated. Is there any way I can span multiple pages with a TextBlock?