是否可以在全屏模式下创建 Silverlight 应用程序?
我开发了一个 silverlight 应用程序。
我的客户希望 GUI 尽可能“不是浏览器体验”。
客户端按下 url 后如何自动切换到全屏模式(f11 样式)?
全屏模式有哪些限制?
如何创建 silverlight 应用程序将关闭浏览器的关闭按钮?
我如何创建按钮,当客户端按下它时,它将在桌面上创建快捷方式图标?
I develop a silverlight app.
my client wants that the gui will be "not browser experience" as posible.
how can i move to full screen mode (f11 style) automaticlly after the client press the url?
what are the limitation on full screen mode?
how can i create close button that the silverlight app will close the browser?
how can i create button that when the client will press it, it will create shortcut icon on desktop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来你想做一些不可能的事情,这是有充分理由的 - 恶意应用程序可以在未经你同意的情况下做这些事情。
无法自动将应用程序设置为全屏,这必须响应用户输入。文档中对此进行了非常清楚的介绍 - 全屏支持。您也不能使用通用键盘输入。 (这两个限制不适用于 受信任的应用程序,但除非您管理客户端计算机,否则您不会想使用它)。
我确信您也无法关闭浏览器或创建快捷方式。
您可能需要查看浏览器外 Silverlight 应用程序。
It sounds like you want to do things that aren't possible, for good reason - a malicious app could do these things without your consent.
It's not possible to set the app full-screen automatically, this must be in response to user input. This is covered quite clearly in the documentation - Full Screen Support. You also can't use general keyboard input. (These two restrictions won't apply with a Trusted Application, but unless you administer the client machines you won't want to use that).
I'm sure you won't be able to close the browser or create a shortcut either.
You might want to look into out of browser Silverlight applications.