Launch Internet explorer from xna game on WP7

I'm wondering if I can start Internet Explorer from my XNA game running on Windows Phone 7?

I'd like to redirect my players to my website.

Best regards,


I believe that you can still use the WebBrowserTask.

Use it like this:

var wbt = new WebBrowserTask();
wbt.URL = "https://stackoverflow.com/";
wbt.Show();

You'll just need to add a reference to Microsoft.Phone.dll

X-REF: How to launch IE7 from a Windows Phone App?

链接地址: http://www.djcxy.com/p/22762.html

上一篇: WP7 XNA:简单的相册

下一篇: 在WP7上从xna游戏启动Internet Explorer