wpf documentviewer 查看不同的文件格式?
我有一个 wpf 应用程序,用户可以在其中上传不同格式的文件(目前只有 pdf)。 我想使用文档查看器让用户查看已上传的内容。 这可能吗? 如果这是不可能的,你能建议一个替代方案吗? 如果可能的话,这是一个很好的解决方案吗?
谢谢, 安吉拉
I have a wpf application where the user can upload files with different formats (for now only pdf). I want to use document viewer to let the user see what's been uploaded. Is this possible? If this is not possible, can you suggest an alternative? If this is possible, is this a good solution for this?
Thanks,
Angela
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我目前正在寻找同样的东西:一种在 WPF 中显示 pdf 文档的方法。 DocumentViewer 似乎旨在显示 XPS 文档。 它可能会显示其他类型的文档,但看起来我们应该为此目的提供我们自己的 Document 类。
因此,我将尝试使用旧的解决方法来显示我的文档:在嵌入式 Web 浏览器中显示它们。 我认为这不是一个好的解决方案。 特别是我们无法使用该方法访问很多文档属性(文档页数、页面大小等)。 但我没有找到任何其他现成的解决方案。
I am currently looking for the same thing : a way to display a pdf document in WPF. DocumentViewer seems targeted on displaying XPS documents. It may display other kinds of documents, but it looks like we should supply our own Document class for that purpose.
So I am going to try displaying my documents using an old workaround : displaying them in an embedded web browser. It is not a good solution in my opinion. Especially for we can not access much document properties using that method (document pages count, pages size, ...). But I do not find any other readily available solution.