WebBrowser Class

Definition

Enables a user to navigate Web pages inside a form.

public ref class WebBrowser : System::Windows::Forms::WebBrowserBase
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.AutoDock)]
public class WebBrowser : System.Windows.Forms.WebBrowserBase
[System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.AutoDock)]
public class WebBrowser : System.Windows.Forms.WebBrowserBase
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.AutoDock)>]
type WebBrowser = class
    inherit WebBrowserBase
[<System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.AutoDock)>]
type WebBrowser = class
    inherit WebBrowserBase
Public Class WebBrowser
Inherits WebBrowserBase
Inheritance
Attributes

Examples

The following code example demonstrates how to implement an address bar for use with the WebBrowser control. This example requires that you have a form that contains a WebBrowser control called webBrowser1, a TextBox control called TextBoxAddress, and a Button control called ButtonGo. When you type a URL into the text box and press Enter or click the Go button, the WebBrowser control navigates to the URL specified. When you navigate by clicking a hyperlink, the text box automatically updates to display the current URL.

For the complete code example, see How to: Add Web Browser Capabilities to a Windows Forms Application.

// Navigates to the URL in the address text box when 
// the ENTER key is pressed while the text box has focus.
void TextBoxAddress_KeyDown( Object^ /*sender*/, System::Windows::Forms::KeyEventArgs^ e )
{
   if ( e->KeyCode == System::Windows::Forms::Keys::Enter &&  !this->TextBoxAddress->Text->Equals( "" ) )
   {
      this->WebBrowser1->Navigate( this->TextBoxAddress->Text );
   }
}

// Navigates to the URL in the address text box when 
// the Go button is clicked.
void ButtonGo_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   if (  !this->TextBoxAddress->Text->Equals( "" ) )
   {
      this->WebBrowser1->Navigate( this->TextBoxAddress->Text );
   }
}

// Updates the URL in TextBoxAddress upon navigation.
void WebBrowser1_Navigated( Object^ /*sender*/, System::Windows::Forms::WebBrowserNavigatedEventArgs^ /*e*/ )
{
   this->TextBoxAddress->Text = this->WebBrowser1->Url->ToString();
}
// Navigates to the URL in the address box when 
// the ENTER key is pressed while the ToolStripTextBox has focus.
private void toolStripTextBox1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Enter)
    {
        Navigate(toolStripTextBox1.Text);
    }
}

// Navigates to the URL in the address box when 
// the Go button is clicked.
private void goButton_Click(object sender, EventArgs e)
{
    Navigate(toolStripTextBox1.Text);
}

// Navigates to the given URL if it is valid.
private void Navigate(String address)
{
    if (String.IsNullOrEmpty(address)) return;
    if (address.Equals("about:blank")) return;
    if (!address.StartsWith("http://") &&
        !address.StartsWith("https://"))
    {
        address = "http://" + address;
    }
    try
    {
        webBrowser1.Navigate(new Uri(address));
    }
    catch (System.UriFormatException)
    {
        return;
    }
}

// Updates the URL in TextBoxAddress upon navigation.
private void webBrowser1_Navigated(object sender,
    WebBrowserNavigatedEventArgs e)
{
    toolStripTextBox1.Text = webBrowser1.Url.ToString();
}

' Navigates to the URL in the address box when 
' the ENTER key is pressed while the ToolStripTextBox has focus.
Private Sub toolStripTextBox1_KeyDown( _
    ByVal sender As Object, ByVal e As KeyEventArgs) _
    Handles toolStripTextBox1.KeyDown

    If (e.KeyCode = Keys.Enter) Then
        Navigate(toolStripTextBox1.Text)
    End If

End Sub

' Navigates to the URL in the address box when 
' the Go button is clicked.
Private Sub goButton_Click( _
    ByVal sender As Object, ByVal e As EventArgs) _
    Handles goButton.Click

    Navigate(toolStripTextBox1.Text)

End Sub

' Navigates to the given URL if it is valid.
Private Sub Navigate(ByVal address As String)

    If String.IsNullOrEmpty(address) Then Return
    If address.Equals("about:blank") Then Return
    If Not address.StartsWith("http://") And _
        Not address.StartsWith("https://") Then
        address = "http://" & address
    End If

    Try
        webBrowser1.Navigate(New Uri(address))
    Catch ex As System.UriFormatException
        Return
    End Try

End Sub

' Updates the URL in TextBoxAddress upon navigation.
Private Sub webBrowser1_Navigated(ByVal sender As Object, _
    ByVal e As WebBrowserNavigatedEventArgs) _
    Handles webBrowser1.Navigated

    toolStripTextBox1.Text = webBrowser1.Url.ToString()

End Sub

Remarks

Note

For new Windows Forms projects, we recommend using the Microsoft Edge WebView2 control instead of the WebBrowser control.

The WebBrowser control lets you host Web pages and other browser-enabled documents in your Windows Forms applications. You can use the WebBrowser control, for example, to provide integrated HTML-based user assistance or Web browsing capabilities in your application. Additionally, you can use the WebBrowser control to add your existing Web-based controls to your Windows Forms client applications.

Important

The WebBrowser control is resource-intensive. To ensure that all resources are released in a timely fashion, call the Dispose() method when you're finished using the control. You must call the Dispose() method on the same thread that attached the events, which should always be the message or user-interface (UI) thread.

The WebBrowser control cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

The WebBrowser control has several properties, methods, and events related to navigation. The following members let you navigate the control to a specific URL, move backward and forward through the navigation history list, and load the home page and search page of the current user:

If the navigation is unsuccessful, a page indicating the problem is displayed. Navigation with any of these members causes the Navigating, Navigated, and DocumentCompleted events to occur at different stages of navigation.

These and other members, such as the Stop and Refresh methods, let you implement user interface controls in your application similar to those in Internet Explorer. Some members are useful even when you don't want to display the WebBrowser control on your form. For example, you can use the Print method to print the latest version of a Web page without displaying the page to the user.

The WebBrowser control also lets you display content that you create in your application or you retrieve from a database or resource file. Use the DocumentText or DocumentStream property to get or set the contents of the current document as a string or data stream.

You can also manipulate the contents of a Web page through the Document property, which contains an HtmlDocument object that provides managed access to the HTML document object model (DOM) for the current page. This property is useful, when used in combination with the ObjectForScripting property, to implement two-way communication between your application code and dynamic HTML (DHTML) code in a Web page, letting you combine Web-based controls and Windows Forms controls in a single user interface. You can use the Document property to call scripting code methods from your application. Your scripting code can access your application through the window.external object, which is a built-in DOM object provided for host access, and which maps to the object that you specify for the ObjectForScripting property.

The WebBrowser control is a managed wrapper for the ActiveX WebBrowser control, and uses whichever version of the control is installed on the user's computer.

Note

  • This class makes security demands at the class level. A SecurityException is thrown when a derived class or any caller in the call stack does not have full trust permission. For details about security demands, see Link Demands and Inheritance Demands.
  • The WebBrowser class can only be used in threads set to single thread apartment (STA) mode. To use this class, ensure that your Main method is marked with the STAThreadAttribute attribute.
  • For accessibility purposes, the TabStop property should be set to false when there is no content to display in the WebBrowser control. Change the value to true to enable users to navigate via keyboard into the contents of the control.

Constructors

WebBrowser()

Initializes a new instance of the WebBrowser class.

Properties

AccessibilityObject

Gets the AccessibleObject assigned to the control.

(Inherited from Control)
AccessibleDefaultActionDescription

Gets or sets the default action description of the control for use by accessibility client applications.

(Inherited from Control)
AccessibleDescription

Gets or sets the description of the control used by accessibility client applications.

(Inherited from Control)
AccessibleName

Gets or sets the name of the control used by accessibility client applications.

(Inherited from Control)
AccessibleRole

Gets or sets the accessible role of the control.

(Inherited from Control)
ActiveXInstance

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets the underlying ActiveX WebBrowser control.

(Inherited from WebBrowserBase)
AllowDrop

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
AllowNavigation

Gets or sets a value indicating whether the control can navigate to another page after its initial page has been loaded.

AllowWebBrowserDrop

Gets or sets a value indicating whether the WebBrowser control navigates to documents that are dropped onto it.

Anchor

Gets or sets the edges of the container to which a control is bound and determines how a control is resized with its parent.

(Inherited from Control)
AutoScrollOffset

Gets or sets where this control is scrolled to in ScrollControlIntoView(Control).

(Inherited from Control)
AutoSize

This property is not relevant for this class.

(Inherited from Control)
BackColor

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not meaningful for this control.

(Inherited from WebBrowserBase)
BackgroundImage

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
BackgroundImageLayout

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
BindingContext

Gets or sets the BindingContext for the control.

(Inherited from Control)
Bottom

Gets the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.

(Inherited from Control)
Bounds

Gets or sets the size and location of the control including its nonclient elements, in pixels, relative to the parent control.

(Inherited from Control)
CanEnableIme

Gets a value indicating whether the ImeMode property can be set to an active value, to enable IME support.

(Inherited from Control)
CanFocus

Gets a value indicating whether the control can receive focus.

(Inherited from Control)
CanGoBack

Gets a value indicating whether a previous page in navigation history is available, which allows the GoBack() method to succeed.

CanGoForward

Gets a value indicating whether a subsequent page in navigation history is available, which allows the GoForward() method to succeed.

CanRaiseEvents

Determines if events can be raised on the control.

(Inherited from Control)
CanSelect

Gets a value indicating whether the control can be selected.

(Inherited from Control)
Capture

Gets or sets a value indicating whether the control has captured the mouse.

(Inherited from Control)
CausesValidation

Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus.

(Inherited from Control)
ClientRectangle

Gets the rectangle that represents the client area of the control.

(Inherited from Control)
ClientSize

Gets or sets the height and width of the client area of the control.

(Inherited from Control)
CompanyName

Gets the name of the company or creator of the application containing the control.

(Inherited from Control)
Container

Gets the IContainer that contains the Component.

(Inherited from Component)
ContainsFocus

Gets a value indicating whether the control, or one of its child controls, currently has the input focus.

(Inherited from Control)
ContextMenu

Gets or sets the shortcut menu associated with the control.

(Inherited from Control)
ContextMenuStrip

Gets or sets the ContextMenuStrip associated with this control.

(Inherited from Control)
Controls

Gets the collection of controls contained within the control.

(Inherited from Control)
Created

Gets a value indicating whether the control has been created.

(Inherited from Control)
CreateParams

Gets the required creation parameters when the control handle is created.

(Inherited from Control)
Cursor

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
DataBindings

Gets the data bindings for the control.

(Inherited from Control)
DataContext

Gets or sets the data context for the purpose of data binding. This is an ambient property.

(Inherited from Control)
DefaultCursor

Gets or sets the default cursor for the control.

(Inherited from Control)
DefaultImeMode

Gets the default Input Method Editor (IME) mode supported by the control.

(Inherited from Control)
DefaultMargin

Gets the space, in pixels, that is specified by default between controls.

(Inherited from Control)
DefaultMaximumSize

Gets the length and height, in pixels, that is specified as the default maximum size of a control.

(Inherited from Control)
DefaultMinimumSize

Gets the length and height, in pixels, that is specified as the default minimum size of a control.

(Inherited from Control)
DefaultPadding

Gets the internal spacing, in pixels, of the contents of a control.

(Inherited from Control)
DefaultSize

Gets the default size of the control.

DesignMode

Gets a value that indicates whether the Component is currently in design mode.

(Inherited from Component)
DeviceDpi

Gets the DPI value for the display device where the control is currently being displayed.

(Inherited from Control)
DisplayRectangle

Gets the rectangle that represents the display area of the control.

(Inherited from Control)
Disposing

Gets a value indicating whether the base Control class is in the process of disposing.

(Inherited from Control)
Dock

Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent.

(Inherited from Control)
Document

Gets an HtmlDocument representing the Web page currently displayed in the WebBrowser control.

DocumentStream

Gets or sets a stream containing the contents of the Web page displayed in the WebBrowser control.

DocumentText

Gets or sets the HTML contents of the page displayed in the WebBrowser control.

DocumentTitle

Gets the title of the document currently displayed in the WebBrowser control.

DocumentType

Gets the type of the document currently displayed in the WebBrowser control.

DoubleBuffered

Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.

(Inherited from Control)
Enabled

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
EncryptionLevel

Gets a value indicating the encryption method used by the document currently displayed in the WebBrowser control.

Events

Gets the list of event handlers that are attached to this Component.

(Inherited from Component)
Focused

Gets a value indicating whether the control or any of its child windows has input focus.

Font

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not meaningful for this control.

(Inherited from WebBrowserBase)
FontHeight

Gets or sets the height of the font of the control.

(Inherited from Control)
ForeColor

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not meaningful for this control.

(Inherited from WebBrowserBase)
Handle

Gets the window handle that the control is bound to.

(Inherited from Control)
HasChildren

Gets a value indicating whether the control contains one or more child controls.

(Inherited from Control)
Height

Gets or sets the height of the control.

(Inherited from Control)
ImeMode

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not meaningful for this control.

(Inherited from WebBrowserBase)
ImeModeBase

Gets or sets the IME mode of a control.

(Inherited from Control)
InvokeRequired

Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.

(Inherited from Control)
IsAccessible

Gets or sets a value indicating whether the control is visible to accessibility applications.

(Inherited from Control)
IsAncestorSiteInDesignMode

Indicates if one of the Ancestors of this control is sited and that site in DesignMode. This property is read-only.

(Inherited from Control)
IsBusy

Gets a value indicating whether the WebBrowser control is currently loading a new document.

IsDisposed

Gets a value indicating whether the control has been disposed of.

(Inherited from Control)
IsHandleCreated

Gets a value indicating whether the control has a handle associated with it.

(Inherited from Control)
IsMirrored

Gets a value indicating whether the control is mirrored.

(Inherited from Control)
IsOffline

Gets a value indicating whether the WebBrowser control is in offline mode.

IsWebBrowserContextMenuEnabled

Gets or a sets a value indicating whether the shortcut menu of the WebBrowser control is enabled.

LayoutEngine

Gets a cached instance of the control's layout engine.

(Inherited from Control)
Left

Gets or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.

(Inherited from Control)
Location

Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.

(Inherited from Control)
Margin

Gets or sets the space between controls.

(Inherited from Control)
MaximumSize

Gets or sets the size that is the upper limit that GetPreferredSize(Size) can specify.

(Inherited from Control)
MinimumSize

Gets or sets the size that is the lower limit that GetPreferredSize(Size) can specify.

(Inherited from Control)
Name

Gets or sets the name of the control.

(Inherited from Control)
ObjectForScripting

Gets or sets an object that can be accessed by scripting code that is contained within a Web page displayed in the WebBrowser control.

Padding

This property is not meaningful for this control.

Parent

Gets or sets the parent container of the control.

(Inherited from Control)
PreferredSize

Gets the size of a rectangular area into which the control can fit.

(Inherited from Control)
ProductName

Gets the product name of the assembly containing the control.

(Inherited from Control)
ProductVersion

Gets the version of the assembly containing the control.

(Inherited from Control)
ReadyState

Gets a value indicating the current state of the WebBrowser control.

RecreatingHandle

Gets a value indicating whether the control is currently re-creating its handle.

(Inherited from Control)
Region

Gets or sets the window region associated with the control.

(Inherited from Control)
RenderRightToLeft
Obsolete.
Obsolete.

This property is now obsolete.

(Inherited from Control)
ResizeRedraw

Gets or sets a value indicating whether the control redraws itself when resized.

(Inherited from Control)
Right

Gets the distance, in pixels, between the right edge of the control and the left edge of its container's client area.

(Inherited from Control)
RightToLeft

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
ScaleChildren

Gets a value that determines the scaling of child controls.

(Inherited from Control)
ScriptErrorsSuppressed

Gets or sets a value indicating whether the WebBrowser displays dialog boxes such as script error messages.

ScrollBarsEnabled

Gets or sets a value indicating whether scroll bars are displayed in the WebBrowser control.

ShowFocusCues

Gets a value indicating whether the control should display focus rectangles.

(Inherited from Control)
ShowKeyboardCues

Gets a value indicating whether the user interface is in the appropriate state to show or hide keyboard accelerators.

(Inherited from Control)
Site

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets the site of the control.

(Inherited from WebBrowserBase)
Size

Gets or sets the height and width of the control.

(Inherited from Control)
StatusText

Gets the status text of the WebBrowser control.

TabIndex

Gets or sets the tab order of the control within its container.

(Inherited from Control)
TabStop

Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.

(Inherited from Control)
Tag

Gets or sets the object that contains data about the control.

(Inherited from Control)
Text

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
Top

Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.

(Inherited from Control)
TopLevelControl

Gets the parent control that is not parented by another Windows Forms control. Typically, this is the outermost Form that the control is contained in.

(Inherited from Control)
Url

Gets or sets the URL of the current document.

UseWaitCursor

This API supports the product infrastructure and is not intended to be used directly from your code.

This property is not supported by this control.

(Inherited from WebBrowserBase)
Version

Gets the version of Internet Explorer installed.

Visible

Gets or sets a value indicating whether the control and all its child controls are displayed.

(Inherited from Control)
WebBrowserShortcutsEnabled

Gets or sets a value indicating whether keyboard shortcuts are enabled within the WebBrowser control.

Width

Gets or sets the width of the control.

(Inherited from Control)
WindowTarget

This property is not relevant for this class.

(Inherited from Control)

Methods

AccessibilityNotifyClients(AccessibleEvents, Int32)

Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.

(Inherited from Control)
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control .

(Inherited from Control)
AttachInterfaces(Object)

Called by the control when the underlying ActiveX control is created.

BeginInvoke(Action)

Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.

(Inherited from Control)
BeginInvoke(Delegate)

Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.

(Inherited from Control)
BeginInvoke(Delegate, Object[])

Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.

(Inherited from Control)
BringToFront()

Brings the control to the front of the z-order.

(Inherited from Control)
Contains(Control)

Retrieves a value indicating whether the specified control is a child of the control.

(Inherited from Control)
CreateAccessibilityInstance()
CreateAccessibilityInstance()

Creates a new accessibility object for the control.

(Inherited from Control)
CreateControl()

Forces the creation of the visible control, including the creation of the handle and any visible child controls.

(Inherited from Control)
CreateControlsInstance()

Creates a new instance of the control collection for the control.

(Inherited from Control)
CreateGraphics()

Creates the Graphics for the control.

(Inherited from Control)
CreateHandle()

Creates a handle for the control.

(Inherited from Control)
CreateObjRef(Type)

Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.

(Inherited from MarshalByRefObject)
CreateSink()

Associates the underlying ActiveX control with a client that can handle control events.

CreateWebBrowserSiteBase()

Returns a reference to the unmanaged WebBrowser ActiveX control site, which you can extend to customize the managed WebBrowser control.

DefWndProc(Message)

Sends the specified message to the default window procedure.

(Inherited from Control)
DestroyHandle()

Destroys the handle associated with the control.

(Inherited from Control)
DetachInterfaces()

Called by the control when the underlying ActiveX control is discarded.

DetachSink()

Releases the event-handling client attached in the CreateSink() method from the underlying ActiveX control.

Dispose()

Releases all resources used by the Component.

(Inherited from Component)
Dispose(Boolean)

Releases the unmanaged resources used by the WebBrowser and optionally releases the managed resources.

DoDragDrop(Object, DragDropEffects)

Begins a drag-and-drop operation.

(Inherited from Control)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

Begins a drag operation.

(Inherited from Control)
DrawToBitmap(Bitmap, Rectangle)

This API supports the product infrastructure and is not intended to be used directly from your code.

This method is not supported by this control.

(Inherited from WebBrowserBase)
EndInvoke(IAsyncResult)

Retrieves the return value of the asynchronous operation represented by the IAsyncResult passed.

(Inherited from Control)
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
FindForm()

Retrieves the form that the control is on.

(Inherited from Control)
Focus()

Sets input focus to the control.

(Inherited from Control)
GetAccessibilityObjectById(Int32)

Retrieves the specified AccessibleObject.

(Inherited from Control)
GetAutoSizeMode()

Retrieves a value indicating how a control will behave when its AutoSize property is enabled.

(Inherited from Control)
GetChildAtPoint(Point)

Retrieves the child control that is located at the specified coordinates.

(Inherited from Control)
GetChildAtPoint(Point, GetChildAtPointSkip)

Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.

(Inherited from Control)
GetContainerControl()

Returns the next ContainerControl up the control's chain of parent controls.

(Inherited from Control)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetLifetimeService()
Obsolete.

Retrieves the current lifetime service object that controls the lifetime policy for this instance.

(Inherited from MarshalByRefObject)
GetNextControl(Control, Boolean)

Retrieves the next control forward or back in the tab order of child controls.

(Inherited from Control)
GetPreferredSize(Size)

Retrieves the size of a rectangular area into which a control can be fitted.

(Inherited from Control)
GetScaledBounds(Rectangle, SizeF, BoundsSpecified)

Retrieves the bounds within which the control is scaled.

(Inherited from Control)
GetService(Type)

Returns an object that represents a service provided by the Component or by its Container.

(Inherited from Component)
GetStyle(ControlStyles)

Retrieves the value of the specified control style bit for the control.

(Inherited from Control)
GetTopLevel()

Determines if the control is a top-level control.

(Inherited from Control)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
GoBack()

Navigates the WebBrowser control to the previous page in the navigation history, if one is available.

GoForward()

Navigates the WebBrowser control to the next page in the navigation history, if one is available.

GoHome()

Navigates the WebBrowser control to the home page of the current user.

GoSearch()

Navigates the WebBrowser control to the default search page of the current user.

Hide()

Conceals the control from the user.

(Inherited from Control)
InitializeLifetimeService()
Obsolete.

Obtains a lifetime service object to control the lifetime policy for this instance.

(Inherited from MarshalByRefObject)
InitLayout()

Called after the control has been added to another container.

(Inherited from Control)
Invalidate()

Invalidates the entire surface of the control and causes the control to be redrawn.

(Inherited from Control)
Invalidate(Boolean)

Invalidates a specific region of the control and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.

(Inherited from Control)
Invalidate(Rectangle)

Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.

(Inherited from Control)
Invalidate(Rectangle, Boolean)

Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.

(Inherited from Control)
Invalidate(Region)

Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.

(Inherited from Control)
Invalidate(Region, Boolean)

Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.

(Inherited from Control)
Invoke(Action)

Executes the specified delegate on the thread that owns the control's underlying window handle.

(Inherited from Control)
Invoke(Delegate)

Executes the specified delegate on the thread that owns the control's underlying window handle.

(Inherited from Control)
Invoke(Delegate, Object[])

Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.

(Inherited from Control)
Invoke<T>(Func<T>)

Executes the specified delegate on the thread that owns the control's underlying window handle.

(Inherited from Control)
InvokeGotFocus(Control, EventArgs)

Raises the GotFocus event for the specified control.

(Inherited from Control)
InvokeLostFocus(Control, EventArgs)

Raises the LostFocus event for the specified control.

(Inherited from Control)
InvokeOnClick(Control, EventArgs)

Raises the Click event for the specified control.

(Inherited from Control)
InvokePaint(Control, PaintEventArgs)

Raises the Paint event for the specified control.

(Inherited from Control)
InvokePaintBackground(Control, PaintEventArgs)

Raises the PaintBackground event for the specified control.

(Inherited from Control)
IsInputChar(Char)

This API supports the product infrastructure and is not intended to be used directly from your code.

Determines if a character is an input character that the control recognizes.

(Inherited from WebBrowserBase)
IsInputKey(Keys)

Determines whether the specified key is a regular input key or a special key that requires preprocessing.

(Inherited from Control)
LogicalToDeviceUnits(Int32)

Converts a Logical DPI value to its equivalent DeviceUnit DPI value.

(Inherited from Control)
LogicalToDeviceUnits(Size)

Transforms a size from logical to device units by scaling it for the current DPI and rounding down to the nearest integer value for width and height.

(Inherited from Control)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
MemberwiseClone(Boolean)

Creates a shallow copy of the current MarshalByRefObject object.

(Inherited from MarshalByRefObject)
Navigate(String)

Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, replacing the previous document.

Navigate(String, Boolean)

Loads the document at the specified Uniform Resource Locator (URL) into a new browser window or into the WebBrowser control.

Navigate(String, String)

Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, replacing the contents of the Web page frame with the specified name.

Navigate(String, String, Byte[], String)

Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, requesting it using the specified HTTP data and replacing the contents of the Web page frame with the specified name.

Navigate(Uri)

Loads the document at the location indicated by the specified Uri into the WebBrowser control, replacing the previous document.

Navigate(Uri, Boolean)

Loads the document at the location indicated by the specified Uri into a new browser window or into the WebBrowser control.

Navigate(Uri, String)

Loads the document at the location indicated by the specified Uri into the WebBrowser control, replacing the contents of the Web page frame with the specified name.

Navigate(Uri, String, Byte[], String)

Loads the document at the location indicated by the specified Uri into the WebBrowser control, requesting it using the specified HTTP data and replacing the contents of the Web page frame with the specified name.

NotifyInvalidate(Rectangle)

Raises the Invalidated event with a specified region of the control to invalidate.

(Inherited from Control)
OnAutoSizeChanged(EventArgs)

Raises the AutoSizeChanged event.

(Inherited from Control)
OnBackColorChanged(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

Raises the BackColorChanged event.

(Inherited from WebBrowserBase)
OnBackgroundImageChanged(EventArgs)

Raises the BackgroundImageChanged event.

(Inherited from Control)
OnBackgroundImageLayoutChanged(EventArgs)

Raises the BackgroundImageLayoutChanged event.

(Inherited from Control)
OnBindingContextChanged(EventArgs)

Raises the BindingContextChanged event.

(Inherited from Control)
OnCanGoBackChanged(EventArgs)

Raises the CanGoBackChanged event.

OnCanGoForwardChanged(EventArgs)

Raises the CanGoForwardChanged event.

OnCausesValidationChanged(EventArgs)

Raises the CausesValidationChanged event.

(Inherited from Control)
OnChangeUICues(UICuesEventArgs)

Raises the ChangeUICues event.

(Inherited from Control)
OnClick(EventArgs)

Raises the Click event.

(Inherited from Control)
OnClientSizeChanged(EventArgs)

Raises the ClientSizeChanged event.

(Inherited from Control)
OnContextMenuChanged(EventArgs)

Raises the ContextMenuChanged event.

(Inherited from Control)
OnContextMenuStripChanged(EventArgs)

Raises the ContextMenuStripChanged event.

(Inherited from Control)
OnControlAdded(ControlEventArgs)

Raises the ControlAdded event.

(Inherited from Control)
OnControlRemoved(ControlEventArgs)

Raises the ControlRemoved event.

(Inherited from Control)
OnCreateControl()

Raises the CreateControl() method.

(Inherited from Control)
OnCursorChanged(EventArgs)

Raises the CursorChanged event.

(Inherited from Control)
OnDataContextChanged(EventArgs) (Inherited from Control)
OnDockChanged(EventArgs)

Raises the DockChanged event.

(Inherited from Control)
OnDocumentCompleted(WebBrowserDocumentCompletedEventArgs)

Raises the DocumentCompleted event.

OnDocumentTitleChanged(EventArgs)

Raises the DocumentTitleChanged event.

OnDoubleClick(EventArgs)

Raises the DoubleClick event.

(Inherited from Control)
OnDpiChangedAfterParent(EventArgs)

Raises the DpiChangedAfterParent event.

(Inherited from Control)
OnDpiChangedBeforeParent(EventArgs)

Raises the DpiChangedBeforeParent event.

(Inherited from Control)
OnDragDrop(DragEventArgs)

Raises the DragDrop event.

(Inherited from Control)
OnDragEnter(DragEventArgs)

Raises the DragEnter event.

(Inherited from Control)
OnDragLeave(EventArgs)

Raises the DragLeave event.

(Inherited from Control)
OnDragOver(DragEventArgs)

Raises the DragOver event.

(Inherited from Control)
OnEnabledChanged(EventArgs)

Raises the EnabledChanged event.

(Inherited from Control)
OnEncryptionLevelChanged(EventArgs)

Raises the EncryptionLevelChanged event.

OnEnter(EventArgs)

Raises the Enter event.

(Inherited from Control)
OnFileDownload(EventArgs)

Raises the FileDownload event.

OnFontChanged(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

Raises the FontChanged event.

(Inherited from WebBrowserBase)
OnForeColorChanged(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

Raises the ForeColorChanged event.

(Inherited from WebBrowserBase)
OnGiveFeedback(GiveFeedbackEventArgs)

Raises the GiveFeedback event.

(Inherited from Control)
OnGotFocus(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

Raises the GotFocus event.

(Inherited from WebBrowserBase)
OnHandleCreated(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

Raises the HandleCreated event.

(Inherited from WebBrowserBase)
OnHandleDestroyed(EventArgs)

Raises the HandleDestroyed event.

(Inherited from Control)
OnHelpRequested(HelpEventArgs)

Raises the HelpRequested event.

(Inherited from Control)
OnImeModeChanged(EventArgs)

Raises the ImeModeChanged event.

(Inherited from Control)
OnInvalidated(InvalidateEventArgs)

Raises the Invalidated event.

(Inherited from Control)
OnKeyDown(KeyEventArgs)

Raises the KeyDown event.

(Inherited from Control)
OnKeyPress(KeyPressEventArgs)

Raises the KeyPress event.

(Inherited from Control)
OnKeyUp(KeyEventArgs)

Raises the KeyUp event.

(Inherited from Control)
OnLayout(LayoutEventArgs)

Raises the Layout event.

(Inherited from Control)
OnLeave(EventArgs)

Raises the Leave event.

(Inherited from Control)
OnLocationChanged(EventArgs)

Raises the LocationChanged event.

(Inherited from Control)
OnLostFocus(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

Raises the LostFocus event.

(Inherited from WebBrowserBase)
OnMarginChanged(EventArgs)

Raises the MarginChanged event.

(Inherited from Control)
OnMouseCaptureChanged(EventArgs)

Raises the MouseCaptureChanged event.

(Inherited from Control)
OnMouseClick(MouseEventArgs)

Raises the MouseClick event.

(Inherited from Control)
OnMouseDoubleClick(MouseEventArgs)

Raises the MouseDoubleClick event.

(Inherited from Control)
OnMouseDown(MouseEventArgs)

Raises the MouseDown event.

(Inherited from Control)
OnMouseEnter(EventArgs)

Raises the MouseEnter event.

(Inherited from Control)
OnMouseHover(EventArgs)

Raises the MouseHover event.

(Inherited from Control)
OnMouseLeave(EventArgs)

Raises the MouseLeave event.

(Inherited from Control)
OnMouseMove(MouseEventArgs)

Raises the MouseMove event.

(Inherited from Control)
OnMouseUp(MouseEventArgs)

Raises the MouseUp event.

(Inherited from Control)
OnMouseWheel(MouseEventArgs)

Raises the MouseWheel event.

(Inherited from Control)
OnMove(EventArgs)

Raises the Move event.

(Inherited from Control)
OnNavigated(WebBrowserNavigatedEventArgs)

Raises the Navigated event.

OnNavigating(WebBrowserNavigatingEventArgs)

Raises the Navigating event.

OnNewWindow(CancelEventArgs)

Raises the NewWindow event.

OnNotifyMessage(Message)

Notifies the control of Windows messages.

(Inherited from Control)
OnPaddingChanged(EventArgs)

Raises the PaddingChanged event.

(Inherited from Control)
OnPaint(PaintEventArgs)

Raises the Paint event.

(Inherited from Control)
OnPaintBackground(PaintEventArgs)

Paints the background of the control.

(Inherited from Control)
OnParentBackColorChanged(EventArgs)

Raises the BackColorChanged event when the BackColor property value of the control's container changes.

(Inherited from Control)
OnParentBackgroundImageChanged(EventArgs)

Raises the BackgroundImageChanged event when the BackgroundImage property value of the control's container changes.

(Inherited from Control)
OnParentBindingContextChanged(EventArgs)

Raises the BindingContextChanged event when the BindingContext property value of the control's container changes.

(Inherited from Control)
OnParentChanged(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

This member overrides OnParentChanged(EventArgs).

(Inherited from WebBrowserBase)
OnParentCursorChanged(EventArgs)

Raises the CursorChanged event.

(Inherited from Control)
OnParentDataContextChanged(EventArgs) (Inherited from Control)
OnParentEnabledChanged(EventArgs)

Raises the EnabledChanged event when the Enabled property value of the control's container changes.

(Inherited from Control)
OnParentFontChanged(EventArgs)

Raises the FontChanged event when the Font property value of the control's container changes.

(Inherited from Control)
OnParentForeColorChanged(EventArgs)

Raises the ForeColorChanged event when the ForeColor property value of the control's container changes.

(Inherited from Control)
OnParentRightToLeftChanged(EventArgs)

Raises the RightToLeftChanged event when the RightToLeft property value of the control's container changes.

(Inherited from Control)
OnParentVisibleChanged(EventArgs)

Raises the VisibleChanged event when the Visible property value of the control's container changes.

(Inherited from Control)
OnPreviewKeyDown(PreviewKeyDownEventArgs)

Raises the PreviewKeyDown event.

(Inherited from Control)
OnPrint(PaintEventArgs)

Raises the Paint event.

(Inherited from Control)
OnProgressChanged(WebBrowserProgressChangedEventArgs)

Raises the ProgressChanged event.

OnQueryContinueDrag(QueryContinueDragEventArgs)

Raises the QueryContinueDrag event.

(Inherited from Control)
OnRegionChanged(EventArgs)

Raises the RegionChanged event.

(Inherited from Control)
OnResize(EventArgs)

Raises the Resize event.

(Inherited from Control)
OnRightToLeftChanged(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

This method is not meaningful for this control.

(Inherited from WebBrowserBase)
OnSizeChanged(EventArgs)

Raises the SizeChanged event.

(Inherited from Control)
OnStatusTextChanged(EventArgs)

Raises the StatusTextChanged event.

OnStyleChanged(EventArgs)

Raises the StyleChanged event.

(Inherited from Control)
OnSystemColorsChanged(EventArgs)

Raises the SystemColorsChanged event.

(Inherited from Control)
OnTabIndexChanged(EventArgs)

Raises the TabIndexChanged event.

(Inherited from Control)
OnTabStopChanged(EventArgs)

Raises the TabStopChanged event.

(Inherited from Control)
OnTextChanged(EventArgs)

Raises the TextChanged event.

(Inherited from Control)
OnValidated(EventArgs)

Raises the Validated event.

(Inherited from Control)
OnValidating(CancelEventArgs)

Raises the Validating event.

(Inherited from Control)
OnVisibleChanged(EventArgs)

This API supports the product infrastructure and is not intended to be used directly from your code.

This member overrides OnVisibleChanged(EventArgs).

(Inherited from WebBrowserBase)
PerformLayout()

Forces the control to apply layout logic to all its child controls.

(Inherited from Control)
PerformLayout(Control, String)

Forces the control to apply layout logic to all its child controls.

(Inherited from Control)
PointToClient(Point)

Computes the location of the specified screen point into client coordinates.

(Inherited from Control)
PointToScreen(Point)

Computes the location of the specified client point into screen coordinates.

(Inherited from Control)
PreProcessControlMessage(Message)

Preprocesses keyboard or input messages within the message loop before they are dispatched.

(Inherited from Control)
PreProcessMessage(Message)

This API supports the product infrastructure and is not intended to be used directly from your code.

Preprocesses keyboard or input messages within the message loop before they are dispatched.

(Inherited from WebBrowserBase)
Print()

Prints the document currently displayed in the WebBrowser control using the current print and page settings.

ProcessCmdKey(Message, Keys)

Processes a command key.

(Inherited from Control)
ProcessDialogChar(Char)

Processes a dialog character.

(Inherited from Control)
ProcessDialogKey(Keys)

This API supports the product infrastructure and is not intended to be used directly from your code.

Processes a dialog key if the WebBrowser ActiveX control does not process it.

(Inherited from WebBrowserBase)
ProcessKeyEventArgs(Message)

Processes a key message and generates the appropriate control events.

(Inherited from Control)
ProcessKeyMessage(Message)

Processes a keyboard message.

(Inherited from Control)
ProcessKeyPreview(Message)

Previews a keyboard message.

(Inherited from Control)
ProcessMnemonic(Char)

This API supports the product infrastructure and is not intended to be used directly from your code.

Processes a mnemonic character.

(Inherited from WebBrowserBase)
RaiseDragEvent(Object, DragEventArgs)

Raises the appropriate drag event.

(Inherited from Control)
RaiseKeyEvent(Object, KeyEventArgs)

Raises the appropriate key event.

(Inherited from Control)
RaiseMouseEvent(Object, MouseEventArgs)

Raises the appropriate mouse event.

(Inherited from Control)
RaisePaintEvent(Object, PaintEventArgs)

Raises the appropriate paint event.

(Inherited from Control)
RecreateHandle()

Forces the re-creation of the handle for the control.

(Inherited from Control)
RectangleToClient(Rectangle)

Computes the size and location of the specified screen rectangle in client coordinates.

(Inherited from Control)
RectangleToScreen(Rectangle)

Computes the size and location of the specified client rectangle in screen coordinates.

(Inherited from Control)
Refresh()

Reloads the document currently displayed in the WebBrowser control by checking the server for an updated version.

Refresh(WebBrowserRefreshOption)

Reloads the document currently displayed in the WebBrowser control using the specified refresh options.

RescaleConstantsForDpi(Int32, Int32)

Provides constants for rescaling the control when a DPI change occurs.

(Inherited from Control)
ResetBackColor()

Resets the BackColor property to its default value.

(Inherited from Control)
ResetBindings()

Causes a control bound to the BindingSource to reread all the items in the list and refresh their displayed values.

(Inherited from Control)
ResetCursor()

Resets the Cursor property to its default value.

(Inherited from Control)
ResetFont()

Resets the Font property to its default value.

(Inherited from Control)
ResetForeColor()

Resets the ForeColor property to its default value.

(Inherited from Control)
ResetImeMode()

Resets the ImeMode property to its default value.

(Inherited from Control)
ResetMouseEventArgs()

Resets the control to handle the MouseLeave event.

(Inherited from Control)
ResetRightToLeft()

Resets the RightToLeft property to its default value.

(Inherited from Control)
ResetText()

Resets the Text property to its default value (Empty).

(Inherited from Control)
ResumeLayout()

Resumes usual layout logic.

(Inherited from Control)
ResumeLayout(Boolean)

Resumes usual layout logic, optionally forcing an immediate layout of pending layout requests.

(Inherited from Control)
RtlTranslateAlignment(ContentAlignment)

Converts the specified ContentAlignment to the appropriate ContentAlignment to support right-to-left text.

(Inherited from Control)
RtlTranslateAlignment(HorizontalAlignment)

Converts the specified HorizontalAlignment to the appropriate HorizontalAlignment to support right-to-left text.

(Inherited from Control)
RtlTranslateAlignment(LeftRightAlignment)

Converts the specified LeftRightAlignment to the appropriate LeftRightAlignment to support right-to-left text.

(Inherited from Control)
RtlTranslateContent(ContentAlignment)

Converts the specified ContentAlignment to the appropriate ContentAlignment to support right-to-left text.

(Inherited from Control)
RtlTranslateHorizontal(HorizontalAlignment)

Converts the specified HorizontalAlignment to the appropriate HorizontalAlignment to support right-to-left text.

(Inherited from Control)
RtlTranslateLeftRight(LeftRightAlignment)

Converts the specified LeftRightAlignment to the appropriate LeftRightAlignment to support right-to-left text.

(Inherited from Control)
Scale(Single)
Obsolete.
Obsolete.

Scales the control and any child controls.

(Inherited from Control)
Scale(Single, Single)
Obsolete.
Obsolete.

Scales the entire control and any child controls.

(Inherited from Control)
Scale(SizeF)

Scales the control and all child controls by the specified scaling factor.

(Inherited from Control)
ScaleBitmapLogicalToDevice(Bitmap)

Scales a logical bitmap value to it's equivalent device unit value when a DPI change occurs.

(Inherited from Control)
ScaleControl(SizeF, BoundsSpecified)

Scales a control's location, size, padding and margin.

(Inherited from Control)
ScaleCore(Single, Single)

This method is not relevant for this class.

(Inherited from Control)
Select()

Activates the control.

(Inherited from Control)
Select(Boolean, Boolean)

Activates a child control. Optionally specifies the direction in the tab order to select the control from.

(Inherited from Control)
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

Activates the next control.

(Inherited from Control)
SendToBack()

Sends the control to the back of the z-order.

(Inherited from Control)
SetAutoSizeMode(AutoSizeMode)

Sets a value indicating how a control will behave when its AutoSize property is enabled.

(Inherited from Control)
SetBounds(Int32, Int32, Int32, Int32)

Sets the bounds of the control to the specified location and size.

(Inherited from Control)
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

Sets the specified bounds of the control to the specified location and size.

(Inherited from Control)
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)

Performs the work of setting the specified bounds of this control.

(Inherited from Control)
SetClientSizeCore(Int32, Int32)

Sets the size of the client area of the control.

(Inherited from Control)
SetStyle(ControlStyles, Boolean)

Sets a specified ControlStyles flag to either true or false.

(Inherited from Control)
SetTopLevel(Boolean)

Sets the control as the top-level control.

(Inherited from Control)
SetVisibleCore(Boolean)

Sets the control to the specified visible state.

(Inherited from Control)
Show()

Displays the control to the user.

(Inherited from Control)
ShowPageSetupDialog()

Opens the Internet Explorer Page Setup dialog box.

ShowPrintDialog()

Opens the Internet Explorer Print dialog box without setting header and footer values.

ShowPrintPreviewDialog()

Opens the Internet Explorer Print Preview dialog box.

ShowPropertiesDialog()

Opens the Internet Explorer Properties dialog box for the current document.

ShowSaveAsDialog()

Opens the Internet Explorer Save Web Page dialog box or the Save dialog box of the hosted document if it is not an HTML page.

SizeFromClientSize(Size)

Determines the size of the entire control from the height and width of its client area.

(Inherited from Control)
Stop()

Cancels any pending navigation and stops any dynamic page elements, such as background sounds and animations.

SuspendLayout()

Temporarily suspends the layout logic for the control.

(Inherited from Control)
ToString()

Returns a String containing the name of the Component, if any. This method should not be overridden.

(Inherited from Component)
Update()

Causes the control to redraw the invalidated regions within its client area.

(Inherited from Control)
UpdateBounds()

Updates the bounds of the control with the current size and location.

(Inherited from Control)
UpdateBounds(Int32, Int32, Int32, Int32)

Updates the bounds of the control with the specified size and location.

(Inherited from Control)
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

Updates the bounds of the control with the specified size, location, and client size.

(Inherited from Control)
UpdateStyles()

Forces the assigned styles to be reapplied to the control.

(Inherited from Control)
UpdateZOrder()

Updates the control in its parent's z-order.

(Inherited from Control)
WndProc(Message)

Processes Windows messages.

Events

AutoSizeChanged

This event is not relevant for this class.

(Inherited from Control)
BackColorChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
BackgroundImageChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
BackgroundImageLayoutChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
BindingContextChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
CanGoBackChanged

Occurs when the CanGoBack property value changes.

CanGoForwardChanged

Occurs when the CanGoForward property value changes.

CausesValidationChanged

Occurs when the value of the CausesValidation property changes.

(Inherited from Control)
ChangeUICues

This API supports the product infrastructure and is not intended to be used directly from your code.

Occurs when the focus or keyboard user interface (UI) cues change.

(Inherited from WebBrowserBase)
Click

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
ClientSizeChanged

Occurs when the value of the ClientSize property changes.

(Inherited from Control)
ContextMenuChanged

Occurs when the value of the ContextMenu property changes.

(Inherited from Control)
ContextMenuStripChanged

Occurs when the value of the ContextMenuStrip property changes.

(Inherited from Control)
ControlAdded

Occurs when a new control is added to the Control.ControlCollection.

(Inherited from Control)
ControlRemoved

Occurs when a control is removed from the Control.ControlCollection.

(Inherited from Control)
CursorChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
DataContextChanged

Occurs when the value of the DataContext property changes.

(Inherited from Control)
Disposed

Occurs when the component is disposed by a call to the Dispose() method.

(Inherited from Component)
DockChanged

Occurs when the value of the Dock property changes.

(Inherited from Control)
DocumentCompleted

Occurs when the WebBrowser control finishes loading a document.

DocumentTitleChanged

Occurs when the DocumentTitle property value changes.

DoubleClick

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
DpiChangedAfterParent

Occurs when the DPI setting for a control is changed programmatically after the DPI of its parent control or form has changed.

(Inherited from Control)
DpiChangedBeforeParent

Occurs when the DPI setting for a control is changed programmatically before a DPI change event for its parent control or form has occurred.

(Inherited from Control)
DragDrop

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
DragEnter

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
DragLeave

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
DragOver

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
EnabledChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
EncryptionLevelChanged

Occurs when the WebBrowser control navigates to or away from a Web site that uses encryption.

Enter

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
FileDownload

Occurs when the WebBrowser control downloads a file.

FontChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
ForeColorChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
GiveFeedback

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
GotFocus

Occurs when the control receives focus.

(Inherited from Control)
HandleCreated

Occurs when a handle is created for the control.

(Inherited from Control)
HandleDestroyed

Occurs when the control's handle is in the process of being destroyed.

(Inherited from Control)
HelpRequested

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
ImeModeChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
Invalidated

Occurs when a control's display requires redrawing.

(Inherited from Control)
KeyDown

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
KeyPress

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
KeyUp

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
Layout

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
Leave

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
LocationChanged

Occurs when the Location property value has changed.

(Inherited from Control)
LostFocus

Occurs when the control loses focus.

(Inherited from Control)
MarginChanged

Occurs when the control's margin changes.

(Inherited from Control)
MouseCaptureChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseClick

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseDoubleClick

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseDown

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseEnter

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseHover

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseLeave

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseMove

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseUp

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
MouseWheel

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
Move

Occurs when the control is moved.

(Inherited from Control)
Navigated

Occurs when the WebBrowser control has navigated to a new document and has begun loading it.

Navigating

Occurs before the WebBrowser control navigates to a new document.

NewWindow

Occurs before a new browser window is opened.

PaddingChanged

Occurs when the value of the Padding property changes.

Paint

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
ParentChanged

Occurs when the Parent property value changes.

(Inherited from Control)
PreviewKeyDown

Occurs before the KeyDown event when a key is pressed while focus is on this control.

(Inherited from Control)
ProgressChanged

Occurs when the WebBrowser control has updated information on the download progress of a document it is navigating to.

QueryAccessibilityHelp

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
QueryContinueDrag

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
RegionChanged

Occurs when the value of the Region property changes.

(Inherited from Control)
Resize

Occurs when the control is resized.

(Inherited from Control)
RightToLeftChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
SizeChanged

Occurs when the Size property value changes.

(Inherited from Control)
StatusTextChanged

Occurs when the StatusText property value changes.

StyleChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
SystemColorsChanged

Occurs when the system colors change.

(Inherited from Control)
TabIndexChanged

Occurs when the TabIndex property value changes.

(Inherited from Control)
TabStopChanged

Occurs when the TabStop property value changes.

(Inherited from Control)
TextChanged

This API supports the product infrastructure and is not intended to be used directly from your code.

This event is not supported by this control.

(Inherited from WebBrowserBase)
Validated

Occurs when the control is finished validating.

(Inherited from Control)
Validating

Occurs when the control is validating.

(Inherited from Control)
VisibleChanged

Occurs when the Visible property value changes.

(Inherited from Control)

Explicit Interface Implementations

IDropTarget.OnDragDrop(DragEventArgs)

Raises the DragDrop event.

(Inherited from Control)
IDropTarget.OnDragEnter(DragEventArgs)

Raises the DragEnter event.

(Inherited from Control)
IDropTarget.OnDragLeave(EventArgs)

Raises the DragLeave event.

(Inherited from Control)
IDropTarget.OnDragOver(DragEventArgs)

Raises the DragOver event.

(Inherited from Control)

Applies to

See also