
webBrowser1.Navigated += newWebBrowserNavigatedEventHandler(webpage_Navigated).webBrowser1.StatusTextChanged += newEventHandler(webpage_StatusTextChanged).webBrowser1.DocumentTitleChanged += newEventHandler(webpage_DocumentTitleChanged).webBrowser1.ProgressChanged += newWebBrowserProgressChangedEventHandler(webpage_ProgressChanged).if (toolStripComboBox1.Text != "" ) Url = toolStripComboBox1.Text.

privatevoid toolStripButton3_Click( object sender, EventArgs e).privatevoid Form1_Load( object sender, EventArgs e).Now, let’s add some mechanism with this form control and view the website by user request. We will doc it as Fill, so that the websites can view with fullscreen. Now we will drag & drop the Web Browser control from the toolbar. To show the status we need to add StatusStrip from Toolbar section Menus & Toolbars. Drag & drop it on application form and dock it to the bottom. Now we need to add some icon to our Resources folder and give the button a look. Finally, the sample application window will appear with a blank sample form.įor our Navigation bar we will now drag & drop the ToolStrip menu to the project window and create our navigation button as we need. Click on Windows Form Application in Templates window. The control has several properties, methods, and events that we can use to implement user interface features.įirstly, we have to create a new project in VS 2015.


The C# Web browser actually provides an Internet Explorer control.
