ChromiumWebBrowserFocusHandler Property  | 
Version 106.0.290  
    Namespace: 
   CefSharp.Wpf
    Assembly:
   CefSharp.Wpf (in CefSharp.Wpf.dll) Version: 106.0.290.0 (106.0.290.0)
Syntaxpublic IFocusHandler FocusHandler { get; set; }public:
virtual property IFocusHandler^ FocusHandler {
	IFocusHandler^ get () sealed;
	void set (IFocusHandler^ value) sealed;
}Property Value
Type: 
IFocusHandlerThe focus handler.
Implements
IWebBrowserFocusHandler
RemarksIf you need customized focus handling behavior for WinForms, the suggested
            best practice would be to inherit from DefaultFocusHandler and try to avoid
            needing to override the logic in OnGotFocus. The implementation in
            DefaultFocusHandler relies on very detailed behavior of how WinForms and
            Windows interact during window activation.
See Also