Hi I am developing a WPF application. The web browser control takes a long time to load the page. Is there a way to display some text before the page loads . The .Documenttext is not available is not available in WPF .
1) Is there a way to make the web browser control faster.
2) Is there a way to display some text before the page loads.
I am currently using visual studio 2010 and I am using the following code to navigate to the page
public Window3()
{
InitializeComponent();
this.Loaded += new RoutedEventHandler(Window3_Loaded);
}
public void Window3_Loaded(object sender, RoutedEventArgs e)
{
webBrowser1.Navigate(new Uri("http://www.google.com")));
}