在 url 上打开 Silverlight OOB(如果已安装)
当我转到时,是否有办法使我的 Silverlight 应用程序的 OOB 版本打开(如果已安装) http://mydomain.com/silverlightapp <--- Xap 加载的位置。
就像当我转到 irc://servername 时打开 irc 客户端一样,
但如果不是前缀,我的应用程序可以打开 OOB 版本吗? App.Current.InstallState == InstallState.Installed 当它加载到浏览器中时?
Is there anyway to make the OOB version of my Silverlight app open(if installed) when i go to
http://mydomain.com/silverlightapp <--- where the Xap is loaded.
Just like a irc client opens when i go to irc://servername
but instead of prefix can my app open the OOB version if
App.Current.InstallState == InstallState.Installed
when it's loaded in the browser?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Silverlight 4 开始,无法从 url 启动 oob 应用程序。 Irc 和其他应用程序可以注册自定义 url 协议处理程序 从 url 启动自身。如果您可以创建本机应用程序并将其安装在用户的计算机上,您可以将其用作 oob 应用程序的启动器。
As of Silverlight 4 there is no way of launching oob application from the url. Irc and other applications can register custom url protocol handler to launch themselves from url. If you can create native application and install it on user's computer you could use it as a launcher for your oob application.