How do you launch an instance of IE from an app? Is it better practice to page to a window with and browser window?
|
feedback
|
|
You can launch a URI in the browser using the WebBrowserTask. Use it like this:
| ||||
feedback
|
|
You need to use the WebBrowserTask:
| |||
|
feedback
|
|
Just so you are aware, you can also embed a browser within your app using WebBrowser control. It's there in the toolbox, just drag it on your page. You can navigate with code if you want like..
| |||||||
feedback
|
|
Matt and Oliver have already answered the question, but I was looking for this and thought some extra information would be helpful since I hate tracking down namespaces:
Then you can use the code shown above, or use this slight variation:
As long as you have handled tombstoning in your app, the user can just hit back to return which is usually the desired behavior. Another bonus is that the loading of the browser integrates really well in WP7 so that it actually looks like it's part of your app. The browser comes in with a turnstile animation and keeps your appBar showing for a moment then flips them to the browser icons - a very nice effect for just 2 lines of code! | |||
|
feedback
|