要嵌入 .NET 应用程序的 XPS 或 XAML 查看器?
是否有查看器对象或 ActiveX 控件可用于在我的 .NET 应用程序中嵌入 XPS 文档或 XAML GUI?
Is there a viewer object or ActiveX control I can use to embed an XPS document, or an XAML GUI in my .NET application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ElementHost 控件在 .Net Windows 窗体上托管 WPF 内容。ElementHost 显示在 WPF 互操作性部分下的工具箱中。
然后,您可以托管一个带有 XPS 文档查看器的 WPF 控件,并且您已经解决了这两个问题。
You can use the ElementHost Control to host WPF content on a .Net Windows Form.The ElementHost appears in the Toolbox under the WPF Interoperability section.
You can then host a WPF control that has XPS Document Viewer on it and you've solved both problems.