In the following, the zoom controls end up being proportional to the FontSize set in the Expander control:
<ScrollViewer>
<StackPanel>
<Expander MaxHeight="500" Margin="5" Padding="5" FontSize="40pt" Header="Test Header">
<FlowDocumentReader ViewingMode="Scroll" >
<FlowDocument Foreground="Black" FontSize="18pt">
<List>
<ListItem>
<Paragraph>Test</Paragraph>
</ListItem>
</List>
</FlowDocument>
</FlowDocumentReader>
</Expander>
</StackPanel>
</ScrollViewer>
I would like to be able to control the height of the zoom controls independent of settings in the Expander control.
Any ideas?
Thanks.