ChromiumWebBrowser Events |
The ChromiumWebBrowser type exposes the following members.
Name | Description | |
---|---|---|
AddressChanged |
Occurs when the browser address changed.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
| |
AutoSizeChanged | This event is not relevant for this class. (Inherited from Control.) | |
BackColorChanged | Occurs when the value of the BackColor property changes. (Inherited from Control.) | |
BackgroundImageChanged | Occurs when the value of the BackgroundImage property changes. (Inherited from Control.) | |
BackgroundImageLayoutChanged | Occurs when the BackgroundImageLayout property changes. (Inherited from Control.) | |
BindingContextChanged | Occurs when the value of the BindingContext property changes. (Inherited from Control.) | |
CausesValidationChanged | Occurs when the value of the CausesValidation property changes. (Inherited from Control.) | |
ChangeUICues | Occurs when the focus or keyboard user interface (UI) cues change. (Inherited from Control.) | |
Click | Occurs when the control is clicked. (Inherited from Control.) | |
ClientSizeChanged | Occurs when the value of the ClientSize property changes. (Inherited from Control.) | |
ConsoleMessage |
Event handler for receiving Javascript console messages being sent from web pages.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
(The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
| |
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 ControlControlCollection. (Inherited from Control.) | |
ControlRemoved | Occurs when a control is removed from the ControlControlCollection. (Inherited from Control.) | |
CursorChanged | Occurs when the value of the Cursor 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.) | |
DoubleClick | Occurs when the control is double-clicked. (Inherited from Control.) | |
DragDrop | Occurs when a drag-and-drop operation is completed. (Inherited from Control.) | |
DragEnter | Occurs when an object is dragged into the control's bounds. (Inherited from Control.) | |
DragLeave | Occurs when an object is dragged out of the control's bounds. (Inherited from Control.) | |
DragOver | Occurs when an object is dragged over the control's bounds. (Inherited from Control.) | |
EnabledChanged | Occurs when the Enabled property value has changed. (Inherited from Control.) | |
Enter | Occurs when the control is entered. (Inherited from Control.) | |
FontChanged | Occurs when the Font property value changes. (Inherited from Control.) | |
ForeColorChanged | Occurs when the ForeColor property value changes. (Inherited from Control.) | |
FrameLoadEnd |
Event handler that will get called when the browser is done loading a frame. Multiple frames may be loading at the same
time. Sub-frames may start or continue loading after the main frame load has ended. This method will always be called
for all frames irrespective of whether the request completes successfully.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
| |
FrameLoadStart |
Event handler that will get called when the browser begins loading a frame. Multiple frames may be loading at the same
time. Sub-frames may start or continue loading after the main frame load has ended. This method may not be called for a
particular frame if the load request for that frame fails. For notification of overall browser load status use
OnLoadingStateChange instead.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
| |
GiveFeedback | Occurs during a drag operation. (Inherited from Control.) | |
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 | Occurs when the user requests help for a control. (Inherited from Control.) | |
ImeModeChanged | Occurs when the ImeMode property has changed. (Inherited from Control.) | |
Invalidated | Occurs when a control's display requires redrawing. (Inherited from Control.) | |
IsBrowserInitializedChanged |
Event called after the underlying CEF browser instance has been created.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
(Inherited from ChromiumHostControlBase.) | |
JavascriptMessageReceived |
Event handler that will get called when the message that originates from CefSharp.PostMessage
| |
KeyDown | Occurs when a key is pressed while the control has focus. (Inherited from Control.) | |
KeyPress | Occurs when a character. space or backspace key is pressed while the control has focus. (Inherited from Control.) | |
KeyUp | Occurs when a key is released while the control has focus. (Inherited from Control.) | |
Layout | Occurs when a control should reposition its child controls. (Inherited from Control.) | |
Leave | Occurs when the input focus leaves the control. (Inherited from Control.) | |
LoadError |
Event handler that will get called when the resource load for a navigation fails or is canceled.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
| |
LoadingStateChanged |
Event handler that will get called when the Loading state has changed.
This event will be fired twice. Once when loading is initiated either programmatically or
by user action, and once when loading is terminated due to completion, cancellation of failure.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
| |
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 | Occurs when the control loses mouse capture. (Inherited from Control.) | |
MouseClick | Occurs when the control is clicked by the mouse. (Inherited from Control.) | |
MouseDoubleClick | Occurs when the control is double clicked by the mouse. (Inherited from Control.) | |
MouseDown | Occurs when the mouse pointer is over the control and a mouse button is pressed. (Inherited from Control.) | |
MouseEnter | Occurs when the mouse pointer enters the control. (Inherited from Control.) | |
MouseHover | Occurs when the mouse pointer rests on the control. (Inherited from Control.) | |
MouseLeave | Occurs when the mouse pointer leaves the control. (Inherited from Control.) | |
MouseMove | Occurs when the mouse pointer is moved over the control. (Inherited from Control.) | |
MouseUp | Occurs when the mouse pointer is over the control and a mouse button is released. (Inherited from Control.) | |
MouseWheel | Occurs when the mouse wheel moves while the control has focus. (Inherited from Control.) | |
Move | Occurs when the control is moved. (Inherited from Control.) | |
PaddingChanged | Occurs when the control's padding changes. (Inherited from Control.) | |
Paint | Occurs when the control is redrawn. (Inherited from Control.) | |
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.) | |
QueryAccessibilityHelp | Occurs when AccessibleObject is providing help to accessibility applications. (Inherited from Control.) | |
QueryContinueDrag | Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled. (Inherited from Control.) | |
RegionChanged | Occurs when the value of the Region property changes. (Inherited from Control.) | |
Resize | Occurs when the control is resized. (Inherited from Control.) | |
RightToLeftChanged | Occurs when the RightToLeft property value changes. (Inherited from Control.) | |
SizeChanged | Occurs when the Size property value changes. (Inherited from Control.) | |
StatusMessage |
Event handler for changes to the status message.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang.
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
(The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
| |
StyleChanged | Occurs when the control style changes. (Inherited from Control.) | |
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 | Occurs when the Text property value changes. (Inherited from Control.) | |
TitleChanged |
Occurs when the browser title changed.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
| |
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.) |