如何在文档查看器中居中我的页面
本文关键字:中居 我的 文档 | 更新日期: 2023-09-27 18:05:20
我正在使用文档来显示用户控件。这里的一些人帮助了我:如何将用户控件放入文档查看器中?
但是用户控件在角落里,我想打印它,但更中心一点。
重复我从另一个问题更新的答案..
您可以将UserControl
放置在一个Grid
中,该将其宽度/高度绑定到固定页面实际宽度/实际高度以实现居中
<DocumentViewer>
<FixedDocument>
<PageContent>
<FixedPage>
<Grid Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type FixedPage}},
Path=ActualWidth}"
Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type FixedPage}},
Path=ActualHeight}">
<local:MyUserControl HorizontalAlignment="Center"
VerticalAlignment="Center"/>
</Grid>
</FixedPage>
</PageContent>
</FixedDocument>
</DocumentViewer>