是否有适用于 .NET 4.0 WinForms 应用程序的单词查看器插件

发布于 2024-11-03 18:03:29 字数 203 浏览 3 评论 0原文

我们使用 .NET Framework 4.0 (C#) 基于 Windows 窗体的应用程序开发一个应用程序。现在,我想在我的应用程序 Windows 窗体中显示 Word 文档的特定页面,其格式与原始 Word 文档中的格式相同。有什么方法可以在基于 C# Windows 窗体的应用程序中显示我的 Word 文档...

我该怎么做?

谢谢&问候。

We developing an Application using .NET Framework 4.0 (C#) windows forms based application. Now, i want to show a word document's particular page in my application windows form with the same formatting in the original word document.Is there any way to show my word document's in C# Windows form based application...

How i do it?

Thanks & Regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二智少女猫性小仙女 2024-11-10 18:03:29

我知道的最简单的方法是嵌入一个 WebBrowser 控件并将 URL 设置为文档路径。

其他信息:

  • WebBrowser 控件添加到表单中
  • Insert webBrowser1.Url = new Uri(@"C:\doc\MyDoc.doc"); 某处
  • 重要约束:IE并且Word必须正确安装

The simplest way I know is to embed a WebBrowser control and set the URL to the document path.

Additional Infos:

  • Add a WebBrowser Control to a form
  • Insert webBrowser1.Url = new Uri(@"C:\doc\MyDoc.doc"); somewhere
  • Important constraint: IE and Word must be installed properly
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文