I want to launch a metro application in windows 8 when user clicks a link on a web page that is rendered in IE 10.
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- Is TWebBrowser dependant on IE version?
- IE dropdown z-index bug
- Multiple cookies with same name
- jQuery: checkbox does not lose focus (blur) [IE]
相关文章
If you have a Metro application your website can ask IE to show an install/launch button by adding some meta tags:
Details at http://msdn.microsoft.com/en-us/library/ie/hh781489(v=vs.85).aspx
You can also register your Metro application to handle protocols and files which the link could point to. This would then prompt the user to open the default application or choose another (much like download files from the web).
Registering a protocol: http://msdn.microsoft.com/en-us/library/windows/apps/hh452686.aspx
Registering as a file handler: http://msdn.microsoft.com/en-us/library/windows/apps/hh452684.aspx