我正在使用文档来显示用户控件。这里的一些人帮助了我:如何将用户控件放在文档查看器中?
但是用户控件出现在角落里,我想打印它,但更中心一点。
我正在使用文档来显示用户控件。这里的一些人帮助了我:如何将用户控件放在文档查看器中?
但是用户控件出现在角落里,我想打印它,但更中心一点。
从另一个问题重复我更新的答案..
您可以将UserControl
其Grid
Width/Height 绑定到 FixedPage ActualWidth/ActualHeight 以实现居中
<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>