如何从 silverlight 应用程序检测操作系统?
我有一个 Silverlight3 应用程序,旨在在 Windows 和 Mac OS 环境上运行。我想在运行时知道我的应用程序是在 Windows 还是 Mac 上运行,这样我就可以根据用户在他们选择的操作系统中习惯的方式进行一些调整。
例如,在Windows中,规范使用“确定”“取消”按钮,而在Mac OS中,规范是“取消”“确定”按钮(相反顺序)。
有什么想法吗?
I have a Silverlight3 application that is meant to run on both Windows and Mac OS environments. I would like to know in runtime if my application is running on a Windows or Mac so I can tweak a few things to the way users are accustomed to in their operating system of choice.
For example, in Windows it is the norm to use "OK" "Cancel" buttons, while in Mac OS the norm is "Cancel" "OK" buttons (reverse order).
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种方法。
从 Silverlight:
从 ASP.NET 并将其发送到 Silverlight:
There are two ways.
From Silverlight:
From ASP.NET and send it to Silverlight:
不熟悉 Silverlight,但我打赌您可以获取
User-Agent
HTTP 标头,其中包括操作系统名称。Not familiar with Silverlight, but I bet you can get hold of
User-Agent
HTTP header, which includes OS name.