Windows form web browser

Общие сведения об элементе управления WebBrowser (Windows Forms) WebBrowser Control (Windows Forms)

WebBrowser Элемент управления Windows Forms размещает веб-страницы и предоставляет возможности для обзора в приложении. The Windows Forms WebBrowser control hosts webpages and provides web browsing capabilities to your application.

в этом разделе In This Section

Общие сведения об элементе управления WebBrowser WebBrowser Control Overview
Описание элемента управления, его основных возможностей и свойств. Explains what this control is and its key features and properties.

Безопасность элемента управления WebBrowser WebBrowser Security
Описание проблем безопасности, связанных с элементом управления. Explains security issues related to the control.

Практическое руководство. Переход по заданному URL с помощью элемента управления WebBrowser How to: Navigate to a URL with the WebBrowser Control
Демонстрирует использование элемента управления для перехода по определенному URL-адресу. Demonstrates how to use the control to navigate to a specific URL.

Практическое руководство. Печать с использованием элемента управления WebBrowser How to: Print with a WebBrowser Control
Демонстрирует печать веб-страницы без ее отображения. Demonstrates how to print a Web page without displaying it.

Практическое руководство. Добавление функциональности веб-браузера в приложения Windows Forms How to: Add Web Browser Capabilities to a Windows Forms Application
Описание инициализации элемента управления для использования в качестве веб-браузера. Describes how to initialize the control for use as a Web browser.

Практическое руководство. Создание средства просмотра HTML-документов в приложении Windows Forms How to: Create an HTML Document Viewer in a Windows Forms Application
Описание инициализации элемента управления для использования в качестве средства просмотра HTML-страниц. Describes how to initialize the control for use as an HTML viewer.

Практическое руководство. Реализация двунаправленного взаимодействия между кодом DHTML и клиентским кодом приложений How to: Implement Two-Way Communication Between DHTML Code and Client Application Code
Описывает, как настроить двустороннюю связь между кодом приложения и DHTML на веб-странице, размещенной в элементе управления. Describes how to set up two-way communication between your application code and DHTML in a Web page hosted by the control.

Использование управляемой объектной модели HTML-документов Using the Managed HTML Document Object Model
Содержит разделы, описывающие способ управления или создания HTML-страниц, размещенных в WebBrowser элементе управления. Provides topics that describe how to manipulate or create HTML pages hosted by the WebBrowser control.

Справочник Reference

Класс WebBrowser WebBrowser class
Описание класса и всех его членов. Describes this class and has links to all its members.

WebBrowserDocumentCompletedEventArgs
Описание класса и всех его членов. Describes this class and has links to all its members.

WebBrowserEncryptionLevel
Описывает это перечисление и все его значения. Describes this enumeration and all its values.

WebBrowserNavigatedEventArgs
Описание класса и всех его членов. Describes this class and has links to all its members.

WebBrowserNavigatedEventHandler
Описывает этот делегат. Describes this delegate.

WebBrowserNavigatingEventArgs
Описание класса и всех его членов. Describes this class and has links to all its members.

WebBrowserNavigatingEventHandler
Описывает этот делегат. Describes this delegate.

WebBrowserProgressChangedEventArgs
Описание класса и всех его членов. Describes this class and has links to all its members.

WebBrowserProgressChangedEventHandler
Описывает этот делегат. Describes this delegate.

WebBrowserReadyState
Описывает это перечисление и все его значения. Describes this enumeration and all its values.

WebBrowserRefreshOption
Описывает это перечисление и все его значения. Describes this enumeration and all its values.

Добавление возможностей веб-браузера в приложение Windows Forms How to add web browser capabilities to a Windows Forms application

Элемент управления WebBrowser позволяет добавить в приложение функциональность веб-браузера. With the WebBrowser control, you can add Web browser functionality to your application. По умолчанию он работает как веб-браузер. The control works like a Web browser by default. После загрузки начального URL-адреса путем установки свойства Url можно переходить по гиперссылкам, а также совершать переход вперед и назад по истории навигации с помощью сочетаний клавиш. After you load an initial URL by setting the Url property, you can navigate by clicking hyperlinks or by using keyboard shortcuts to move backward and forward through navigation history. Дополнительные функциональные возможности браузера по умолчанию доступны в контекстном меню, появляющемся при щелчке правой кнопки мыши. By default, you can access additional browser functionality through the right-click shortcut menu. Вы также можете открывать новые документы, сбрасывая их в элемент управления. You can also open new documents by dropping them onto the control. Кроме того, элемент управления WebBrowser имеет несколько свойств, методов и событий, которые можно использовать для реализации возможностей пользовательского интерфейса, аналогичных имеющимся в Internet Explorer. The WebBrowser control also has several properties, methods, and events that you can use to implement user interface features similar to those found in Internet Explorer.

В примере кода ниже реализуются адресная строка, стандартные кнопки браузера, меню Файл, строка состояния и строка заголовка, в которой содержится заголовок текущей страницы. The following code example implements an address bar, typical browser buttons, a File menu, a status bar, and a title bar that displays the current page title.

Пример Example

Компиляция кода Compile the code

Для этого примера требуются: This example requires:

Общие сведения об элементе управления WebBrowser WebBrowser Control Overview

WebBrowserЭлемент управления предоставляет управляемую оболочку для элемента управления ActiveX WebBrowser. The WebBrowser control provides a managed wrapper for the WebBrowser ActiveX control. Управляемая оболочка позволяет отображать веб-страницы в клиентских приложениях Windows Forms. The managed wrapper lets you display Web pages in your Windows Forms client applications. Элемент управления можно использовать WebBrowser для дублирования функций веб-обзора Internet Explorer в приложении или отключения функций Internet Explorer по умолчанию и использования элемента управления в качестве простого средства просмотра HTML-документов. You can use the WebBrowser control to duplicate Internet Explorer Web browsing functionality in your application or you can disable default Internet Explorer functionality and use the control as a simple HTML document viewer. Кроме того, элемент управления можно использовать для добавления в форму элементов пользовательского интерфейса на основе DHTML и скрытия того факта, что они размещаются в WebBrowser элементе управления. You can also use the control to add DHTML-based user interface elements to your form and hide the fact that they are hosted in the WebBrowser control. Такой подход позволяет легко объединять веб-элементы управления с Windows Forms элементами управления в одном приложении. This approach lets you seamlessly combine Web controls with Windows Forms controls in a single application.

Часто используемые свойства, методы и события Frequently Used Properties, Methods, and Events

WebBrowserЭлемент управления имеет несколько свойств, методов и событий, которые можно использовать для реализации элементов управления, найденных в Internet Explorer. The WebBrowser control has several properties, methods, and events that you can use to implement controls found in Internet Explorer. Например, можно использовать Navigate метод для реализации адресной строки, а также методы,, GoBack GoForward Stop и Refresh для реализации кнопок навигации на панели инструментов. For example, you can use the Navigate method to implement an address bar, and the GoBack , GoForward , Stop , and Refresh methods to implement navigation buttons on a toolbar. Можно Navigated выполнить обработку события, чтобы обновить адресную строку со значением свойства и заголовком Url со значением DocumentTitle Свойства. You can handle the Navigated event to update the address bar with the value of the Url property and the title bar with the value of the DocumentTitle property.

Если вы хотите создать собственное содержимое страницы в приложении, можно задать DocumentText свойство. If you want to generate your own page content within your application, you can set the DocumentText property. Если вы знакомы с моделью DOM HTML, можно также управлять содержимым текущей веб-страницы с помощью Document Свойства. If you are familiar with the HTML document object model (DOM), you can also manipulate the contents of the current Web page through the Document property. С помощью этого свойства можно хранить и изменять документы в памяти, а не перемещаться между файлами. With this property, you can store and modify documents in memory instead of navigating among files.

WebBrowser Control (Windows Forms)

The Windows Forms WebBrowser control hosts webpages and provides web browsing capabilities to your application.

In This Section

WebBrowser Control Overview
Explains what this control is and its key features and properties.

WebBrowser Security
Explains security issues related to the control.

How to: Navigate to a URL with the WebBrowser Control
Demonstrates how to use the control to navigate to a specific URL.

How to: Print with a WebBrowser Control
Demonstrates how to print a Web page without displaying it.

How to: Add Web Browser Capabilities to a Windows Forms Application
Describes how to initialize the control for use as a Web browser.

How to: Create an HTML Document Viewer in a Windows Forms Application
Describes how to initialize the control for use as an HTML viewer.

How to: Implement Two-Way Communication Between DHTML Code and Client Application Code
Describes how to set up two-way communication between your application code and DHTML in a Web page hosted by the control.

Using the Managed HTML Document Object Model
Provides topics that describe how to manipulate or create HTML pages hosted by the WebBrowser control.

Reference

WebBrowser class
Describes this class and has links to all its members.

WebBrowserDocumentCompletedEventArgs
Describes this class and has links to all its members.

WebBrowserEncryptionLevel
Describes this enumeration and all its values.

WebBrowserNavigatedEventArgs
Describes this class and has links to all its members.

WebBrowserNavigatingEventArgs
Describes this class and has links to all its members.

WebBrowserProgressChangedEventArgs
Describes this class and has links to all its members.

WebBrowserReadyState
Describes this enumeration and all its values.

WebBrowserRefreshOption
Describes this enumeration and all its values.

Web Browser Class

Definition

Enables the user to navigate Web pages inside your form.

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.

Remarks

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.

The WebBrowser control is resource-intensive. Be sure to call the Dispose() method when you are finished using the control to ensure that all resources are released in a timely fashion. 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 do not 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.

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.

Constructors

Initializes a new instance of the WebBrowser class.

Properties

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.

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

Читайте также:  Tracing processes in linux

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.

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

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) 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.

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.

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

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

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

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

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.

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.

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) IsBusy

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

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.

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

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.

This property is not meaningful for this control.

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.

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

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.

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

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.

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.

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.

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.

Gets or sets the width of the control.

(Inherited from Control) WindowTarget

This property is not relevant for this class.

(Inherited from Control)

Methods

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.

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()

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.

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

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.

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

Releases all resources used by the Component.

(Inherited from Component)

Читайте также:  Vi linux команды выход
Dispose(Boolean)

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

Begins a drag-and-drop 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()

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.

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

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

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

Conceals the control from the user.

(Inherited from Control) InitializeLifetimeService()

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(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) 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.

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

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.

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.

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

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

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.

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.

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

(Inherited from Control) OnAutoSizeChanged(EventArgs)

(Inherited from Control) OnBackColorChanged(EventArgs)

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

(Inherited from WebBrowserBase) OnBackgroundImageChanged(EventArgs)

(Inherited from Control) OnBackgroundImageLayoutChanged(EventArgs)

(Inherited from Control) OnBindingContextChanged(EventArgs)

(Inherited from Control) OnCanGoBackChanged(EventArgs)

(Inherited from Control) OnChangeUICues(UICuesEventArgs)

Raises the ChangeUICues event.

(Inherited from Control) OnClick(EventArgs)

Raises the Click event.

(Inherited from Control) OnClientSizeChanged(EventArgs)

(Inherited from Control) OnContextMenuChanged(EventArgs)

(Inherited from Control) OnContextMenuStripChanged(EventArgs)

(Inherited from Control) OnControlAdded(ControlEventArgs)

Raises the ControlAdded event.

(Inherited from Control) OnControlRemoved(ControlEventArgs)

(Inherited from Control) OnCreateControl()

(Inherited from Control) OnCursorChanged(EventArgs)

(Inherited from Control) OnDockChanged(EventArgs)

Raises the DockChanged event.

(Inherited from Control) OnDocumentCompleted(WebBrowserDocumentCompletedEventArgs)

Raises the DoubleClick event.

(Inherited from Control) OnDpiChangedAfterParent(EventArgs)

(Inherited from Control) OnDpiChangedBeforeParent(EventArgs)

(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)

(Inherited from Control) OnEncryptionLevelChanged(EventArgs)

Raises the Enter event.

(Inherited from Control) OnFileDownload(EventArgs)

Raises the FileDownload event.

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.

(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.

(Inherited from WebBrowserBase) OnHandleDestroyed(EventArgs)

(Inherited from Control) OnHelpRequested(HelpEventArgs)

(Inherited from Control) OnImeModeChanged(EventArgs)

(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)

(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)

(Inherited from Control) OnMouseCaptureChanged(EventArgs)

(Inherited from Control) OnMouseClick(MouseEventArgs)

Raises the MouseClick event.

(Inherited from Control) OnMouseDoubleClick(MouseEventArgs)

(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.

Raises the Navigating event.

Raises the NewWindow event.

Notifies the control of Windows messages.

(Inherited from Control) OnPaddingChanged(EventArgs)

(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.

(Inherited from WebBrowserBase) OnParentCursorChanged(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)

(Inherited from Control) OnPrint(PaintEventArgs)

Raises the Paint event.

(Inherited from Control) OnProgressChanged(WebBrowserProgressChangedEventArgs)

(Inherited from Control) OnRegionChanged(EventArgs)

(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 StyleChanged event.

(Inherited from Control) OnSystemColorsChanged(EventArgs)

(Inherited from Control) OnTabIndexChanged(EventArgs)

(Inherited from Control) OnTabStopChanged(EventArgs)

(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.

(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.

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)

Читайте также:  Где находится kms активатор windows 10

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.

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

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)

Scales the control and any child controls.

(Inherited from Control) Scale(Single, Single)

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.

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

Opens the Internet Explorer Print Preview dialog box.

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

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.

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.

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

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.

Occurs when the CanGoForward property value changes.

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) 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.

Occurs when the DocumentTitle property value changes.

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.

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.

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.

Occurs before the WebBrowser control navigates to a new document.

Occurs before a new browser window is opened.

Occurs when the value of the Padding property changes.

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.

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.

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.

Оцените статью