我正在使用文档来显示用户控件。来自这里的一些人帮助了我:How can I put an user control inside a document viewer?
但是用户控件出现在角落里,我想打印出来,但更加重要。
答案 0 :(得分:4)
从其他问题重复我更新的答案..
您可以将UserControl
放入Grid
,将其宽度/高度绑定到固定页面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>