如何将 Silverlight OOB 连接到 Winforms 面板?

发布于 2024-08-27 12:11:50 字数 804 浏览 15 评论 0原文

摘要:

我希望在我当前的 Winforms 应用程序中使用漂亮的 Silverlight/WPF。应用程序只能访问完整的.NET Framework 2.0,不能多也不能少。我能想到的唯一可能性是使用 Com+ Automation 的 Silverlight OOB 应用程序,但我不知道如何将 Silverlight 应用程序附加到父 Winforms 应用程序中的面板。

详细信息

我目前有一个 winforms 应用程序,并且希望利用 WPF 中改进的 GUI 功能,但我的许多用户仍在运行 .Net Framework 2.0 并且拒绝更新到 3+。所以 WPF 不适合我。

我知道 Silverlight 只是 WPF 的一个子集,但它具有我正在寻找的大部分功能,并且只需要 Silverlight 插件。我读过有关 Silverlight 4 的 Com+ Automation 的内容,它使我能够访问完整的桌面 .Net Framework 2.0(我需要)。为了让 Com+ Automation 在 Silverlight 中工作,我需要提升信任度,而我能找到的获得提升信任度的唯一方法就是使我的 Silverlight 应用程序脱离浏览器 (OOB)。

我的问题是 OOB 应用程序似乎在其自己的容器窗口中运行,并且我需要将 Silverlight 应用程序嵌入到我的 Winforms 应用程序的面板中。我的 Winforms 应用程序不需要与 Silverlight 应用程序通信,反之亦然,这纯粹是为了将所有内容包含并显示在一个窗口中。

如果有其他我没有想到的方法可以达到我想要的结果,请随时提出。

Summary:

I want the prettiness of Silverlight/WPF in part of my current Winforms application. The application can only have access to the full .NET Framework 2.0, no more and no less. The only possibility I can think of is a Silverlight OOB application that utilizes Com+ Automation but I can't figure out how to attach the Silverlight application to a panel within the parent Winforms application.

Details:

I currently have a winforms application, and want to take advantage of the improved GUI features in WPF but to many of my users are still running .Net Framework 2.0 and refuse to update to 3+. So WPF is not an option for me.

I know Silverlight is just a subset of WPF, but it has most of the features I'm looking for and only requires the Silverlight plug-in. I've read about Silverlight 4's Com+ Automation, which would give me access to the full desktop .Net Framework 2.0 (which I need). In order for Com+ Automation to work in Silverlight I need elevated trust and the only way I can find to gain elevated trust is to make my Silverlight application Out-Of-Browser (OOB).

My problem is that the OOB application seems to run in its own container window and I need the Silverlight application embedded inside a panel in my Winforms application. My Winforms application does not need to communicate with the Silverlight application and vice-versa, this is purely to have everything contained and displayed in one window.

If there is another way to get my desired result that I have not thought of feel free to suggest it.

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

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

发布评论

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

评论(1

断爱 2024-09-03 12:11:50

最佳选择是托管 Web 浏览器控件中的 Silverlight 内容。这将允许您的 Silverlight 内容在 Windows 窗体应用程序“内部”运行。

COM 自动化对于将 silverlight 嵌入 Windows 窗体应用程序没有帮助。它实际上是为了在 Silverlight 中使用 COM 而设计的,而不是相反。

The best option is to host the Silverlight content within a WebBrowser Control. This will allow your Silverlight content to run "inside" your windows forms application.

The COM automation won't help for embedded silverlight INTO a Windows Forms application. It's really intended for using COM from within Silverlight, not the other way around.

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