如何将用户控件放入文档查看器中?
是否可以将用户控件放入文档查看器中?如果可以的话,会怎样呢?
Is it possible put an user control inside a doument viewer? If possible, how will it be that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下内容..
编辑
添加了一个将其宽度/高度绑定到固定页面的网格以实现居中
不幸的是 Visual Studio 2010 设计器在这里被破坏,您将收到一条消息,指出“属性‘pages’不支持‘PageContent’类型的值。
此处报告:WPF FixedDocument对象不允许 PageContent 子元素
作为解决方法,您可以在
Xaml 后面的代码
中加载它代码后面
You can use the following..
Edit
Added a
Grid
which binds itsWidth/Height
to theFixedPage
ActualWidth/ActualHeight
to achieve centeringUnfortunately the Visual Studio 2010 designer is broken here and you'll get a message saying "Property 'pages' does not support values of type 'PageContent`.
This is reported here: WPF FixedDocument object doesn't allow PageContent children
As a workaround you can load it in code behind
Xaml
Code behind