Reputation: 18560
I've created a simple Windows Phone app that launches the Google+ Mobile site. What I'd like to do, though, is a bit more complicated than that, and I have absolutely no idea how do to it.
Basically, I need help with this:
If someone can point me in the right direction, that'd be great. If someone wants to help me with this project, that'd be even better.
Upvotes: 0
Views: 426
Reputation: 991
WebBrowser
control.Navigating
event for the WebBrowser
to check for the domain. Something like this:<phone:WebBrowser Navigating="OnNavigating"/>
private void OnBrowserPostNavigating(object sender, NavigatingEventArgs e)
{
//check for domain here, open IE accordingly
}
<phone:PhoneApplicationPage.ApplicationBar>
xaml element and add a button with a handler to do the navigation for you.Upvotes: 1