2

我正在使用文档来显示用户控件。这里的一些人帮助了我:如何将用户控件放在文档查看器中?

但是用户控件出现在角落里,我想打印它,但更中心一点。

4

1 回答 1

4

从另一个问题重复我更新的答案..

您可以将UserControlGridWidth/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>
于 2011-08-13T01:50:55.230 回答