| ChromiumWebBrowserFrameLoadEnd Event | 
Version 63.0.0
            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.
            
 
Namespace: CefSharp.WpfAssembly: CefSharp.Wpf (in CefSharp.Wpf.dll) Version: 63.0.0.0 (63.0.0.0)
 Syntax
Syntaxpublic event EventHandler<FrameLoadEndEventArgs> FrameLoadEnd
public:
virtual  event EventHandler<FrameLoadEndEventArgs^>^ FrameLoadEnd {
	void add (EventHandler<FrameLoadEndEventArgs^>^ value);
	void remove (EventHandler<FrameLoadEndEventArgs^>^ value);
}Value
Type: 
SystemEventHandlerFrameLoadEndEventArgsImplements
IWebBrowserFrameLoadEnd See Also
See Also