如何将页面置于文档查看器中心?

时间:2011-08-13 01:24:06

标签: c# wpf xaml layout documentviewer

我正在使用文档来显示用户控件。来自这里的一些人帮助了我:How can I put an user control inside a document viewer?

但是用户控件出现在角落里,我想打印出来,但更加重要。

1 个答案:

答案 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>