Web Browser In Windows Forms Application
This blog is not updated anymore.
I am now writing at my new site One .Net Way
I am now writing at my new site One .Net Way
Placing a web browser in your windows forms application could not be easier. All you need to do is place the WebBrowser control
on your Form in designer and then use the Navigate method on WebBrowser control to visit a web address. Here is a simple form I have created and handled the click event of button to navigate to a Url.
private void buttonGo_Click(object sender, EventArgs e) { webBrowser.Navigate(textBoxAddress.Text); }
It does not take more than few seconds to get this going. IMO one of the easiest controls to work with.
You may also like to read...
July 10th, 2008 at 5:25 am
Found your blog through a search engine. I attended one of your wpf classes in Sydney. Are you planning on any more training sessions?
August 13th, 2008 at 9:00 am
[…] - bookmarked by 3 members originally found by JazzyLemmon on 2008-07-20 Web Browser In Windows Forms Application http://www.deepakkapoor.net/blog/2008/07/10/web-browser-in-windows-forms-application/ - bookmarked […]