显示文档文件时出现问题
我有一个带有图片和表格的文档文件,想以 C# 形式显示它。当我将其加载到 richtextbox 中时,表格未正确显示,
我该如何解决这个问题?
I have a doc file with picture and table and want to show it in C# form. when i load it in richtextbox the table is not showing correctly
how can i solve this problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真正的 doc 文件比 Richtextbox 能够理解的 rtf 格式要重要得多。
如果您确实需要显示(可能编辑或转换为 PDF...)一个 doc 文件,那么您将需要使用一些第三方组件,例如 Aspose.Words...
另一种选择 - 尽管仅适用于桌面应用程序并且需要 Word安装后将使用 Office Automation - 请参阅
http://msdn.microsoft.com/en-us/library/dd264733.aspx
C# Office 2010 自动化
http://www.codeproject.com/KB/office/ms_office_automation.aspx
A real doc file much more than rtf which is the format the richtextbox understands.
IF you really need to display (perhaps edit or convert to PDF...) a doc file then you will need to use some 3rd-party component like Aspose.Words...
Another option - although only for desktop applications and requiring Word to be installed would be to use Office Automation - see
http://msdn.microsoft.com/en-us/library/dd264733.aspx
C# office 2010 automation
http://www.codeproject.com/KB/office/ms_office_automation.aspx