在 Silverlight 4 中托管 Microsoft Office 应用程序?

发布于 2024-09-02 17:33:47 字数 284 浏览 5 评论 0原文

我知道 Silverlight 4 通过 AutomationFactory 类支持 COM 互操作。

dynamic excel = AutomationFactory.CreateObject( "Excel.Application" );
excel.Visible = true;

但这会为 COM 对象创建一个单独的窗口。我在这里缺少的是,如果我实际上能够在我的 Silverlight 应用程序中(例如在 ContentPresenter 中)实际托管 Office 文档?

I know that Silverlight 4 has support for COM interop via the AutomationFactory class.

dynamic excel = AutomationFactory.CreateObject( "Excel.Application" );
excel.Visible = true;

But this creates a separate window for the COM object. What I am missing here is if I am actually able to actually host an Office document inside my Silverlight application - in a ContentPresenter for example?

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

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

发布评论

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

评论(1

怎会甘心 2024-09-09 17:33:47

你并没有错过任何东西——这是不可能完成的。您可以寻找 Office 文档 Silverlight 的转换器,例如

  • 用于 Word 的 TextGlow (来源位于
    CodePlex)(2007 年 [也许
    2010
    ] 仅限格式)。
  • PowerPoint 到 Silverlight
    转换器(客户端转换,
    需要安装 PowerPoint),
    也在 CodePlex 上。

这两个都是仅供查看的,并且没有接近完全保真度 - 但它们是一组“足够好”的选项。

You're not missing anything - it can't be done. You could look for converters to Silverlight of Office documents like

  • TextGlow for Word (source is on
    CodePlex) (2007 [and maybe
    2010
    ] format only).
  • PowerPoint to Silverlight
    Convertor (client side conversion,
    requires PowerPoint to be installed),
    also on CodePlex.

Both of these are view-only and do not come close to full fidelity - but they are a "good enough" set of options.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文