在我的 .NET WPF 应用程序中在运行时指定 XBAP?
我可以在 WPF 应用程序中动态托管 XBAP 吗?
我可以下载 XBAP,将其设置为托管在我的 WPF 应用程序中,并以编程方式与其交互吗?
Can I host an XBAP in my WPF application dynamically?
Can I download an XBAP, set it to be hosted in my WPF application, and interact with it programatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设“是”,因为您始终可以放置
WebBrowser
控件 在您的应用程序中,然后调用使用 URL 导航到您要启动的 XBAP 应用程序。
事实上,这是 Microsoft 文档中推荐的
IWpfHostSupport
接口具体来说,在“备注”部分(重点是我的):
Win32 应用程序(例如 Web 浏览器)可以托管 WPF 内容,包括 XAML 浏览器应用程序 (XBAP) 和松散的 XAML。 为了承载 WPF 内容,Win32 应用程序创建 WebBrowser 控件的实例。
I would assume "yes", since you can always place a
WebBrowser
control in your application and then callNavigate
with the url to the XBAP application that you wish to launch.As a matter of fact, this is recomended in the documentation from Microsoft for the
IWpfHostSupport
interfaceSpecifically, in the "remarks" section (emphasis mine):
Win32 applications such as Web browsers can host WPF content, including XAML browser applications (XBAPs) and loose XAML. To host WPF content, Win32 applications create an instance of the WebBrowser control.