Sometimes we have the necessity to open web browser from own application to referencing something on the web.
To raise this gol we need for example to add the click event to a button and write few lines of code:
private void Button_Click(object sender, RoutedEventArgs e) { WebBrowserTask wtb = new WebBrowserTask(); wtb.Uri = new Uri("https://aaccostatech.wordpress.com/", UriKind.Absolute); wtb.Show(); }
That’s all! The web page will be appear in a few seconds