开发者

Launch Internet explorer from xna game on WP7

开发者 https://www.devze.com 2023-01-24 15:23 出处:网络
I\'m wondering if I can st开发者_运维百科art Internet Explorer from my XNA game running on Windows Phone 7?

I'm wondering if I can st开发者_运维百科art 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?

0

精彩评论

暂无评论...
验证码 换一张
取 消