| WebBrowserExtensionsDestroyWindow Method  | 
Version 98.1.210 
            Manually call https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-destroywindow
            passing in the handle returned from 
GetWindowHandle.
            This method can be used to manually close the underlying CefBrowser instance.
            This will avoid the WM_Close message that CEF sends by default to the top level window.
            (Which closes your application). This method should generally only be used in the WinForms version.
            
 
    Namespace: 
   CefSharp.WinForms
    Assembly:
   CefSharp.WinForms (in CefSharp.WinForms.dll) Version: 98.1.210.0 (98.1.210.0)
 Syntax
Syntax Examples
Examples
Cef.UIThreadTaskFactory.StartNew(() =>
{
  var closed = chromiumWebBrowser.DestroyWindow();
}); See Also
See Also