你能强制Silverlight只在浏览器外运行吗?
你能强制Silverlight只在浏览器外运行吗?
编辑:我问的原因是因为许多 Silverlight 的功能只能在 OOB 下运行。如果我的应用程序依赖于此,我需要要求 Silverlight 应用程序在该模式下运行或选择其他模式。
Can you force Silverlight to only run Out-of-browser?
EDIT: The reason I'm asking is because a lot of Silverlight's functionality only works OOB. If my application depends on this I need to either require the Silverlight app to run in that mode or pick something else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的
Application_Startup
中甚至在 App.Xaml.cs 中使用它怎么样:-现在创建一个名为
PleaseRunOOB
的非常简单的 UserControl 来向用户展示需要安装和/或运行应用程序的 OOB 版本。How about using this in your
Application_Startup
even in App.Xaml.cs:-Now create a very simple UserControl called
PleaseRunOOB
to present to the user the neeed to install and/or run the OOB version of the app.来自 http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2010/03/15/silverlight-4-quick-tip-out-of-browser-improvements.aspx
新的 OOB 模型存在的附加功能是能够不从网页安装应用程序(就像版本 3 中的那样),而是从命令行(有可用的 XAP 文件)安装应用程序。 Silverlight 4 OOB 启动器具有新的命令行参数,可以在“模拟模式”下安装、卸载和执行应用程序 - 无需安装。
例如。要在桌面上安装应用程序,请使用以下命令:
要卸载它,请使用以下命令:
要运行应用程序而不安装它(在模拟模式下),请使用以下命令:
from http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2010/03/15/silverlight-4-quick-tip-out-of-browser-improvements.aspx
Additional feature exist with new OOB model is ability to install application not from the web page (like it was from version 3), but from command line (having XAP file available). Silverlight 4 OOB launcher has new command line parameters to install, uninstall and execute application in “emulation mode” – without installing it.
For example. to install application on the desktop use the following command:
To uninstall it use the following command:
To run application without installing it (in emulation mode), use the following command: