I have a paged WPF(.Net4) application which is too big for the screen when being used on a netbook. I'd like to be able to resize and scroll (as we do when using a webpage) but currently all items outside of the view are not accessible. I suspect there's probably a simple solution but I just don't know.
Thanks in advance.
UPDATE
The NavigationWindow doesn't support direct content so I have to add the scroll function to each page separately. Is there a better way to do this?
I've added the code below but when the program is resized the scroller doesn't appear. Without the visibility settings it just shows a 'dead' scroller.
<ScrollViewer CanContentScroll="True" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<StackPanel Margin="0,40,0,0" Width="600" Height="500">
<FlowDocumentPageViewer Height="500">
<FlowDocument>
<Paragraph>CONTENT REMOVED FOR BREVITY</Paragraph>
</FlowDocument>
</FlowDocumentPageViewer>
</StackPanel>
</ScrollViewer>