ChromiumWebBrowserPaint Event | 
Version 87.1.132 
            Raised every time 
OnPaint(PaintElementType, Rect, IntPtr, Int32, Int32) is called. You can access the underlying buffer, though it's
            preferable to either override 
OnPaint(Boolean, Rect, IntPtr, Int32, Int32) or implement your own 
IRenderHandler as there is no outwardly
            accessible locking (locking is done within the default 
IRenderHandler implementations).
            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
            
 
    Namespace: 
   CefSharp.Wpf
    Assembly:
   CefSharp.Wpf (in CefSharp.Wpf.dll) Version: 87.1.132.0 (87.1.132.0)
Syntaxpublic event EventHandler<PaintEventArgs> Paint
public:
virtual  event EventHandler<PaintEventArgs^>^ Paint {
	void add (EventHandler<PaintEventArgs^>^ value);
	void remove (EventHandler<PaintEventArgs^>^ value);
}Value
Type: 
SystemEventHandlerPaintEventArgsImplements
IWpfWebBrowserPaint
See Also