AdvancedLauncher.Tools.Interop.HwndHostEx.DestroyWindowOverride C# (CSharp) Method

DestroyWindowOverride() protected method

Default implementation of DestroyWindowCore, which just destroys the hosted window. If this is undesirable, override this method and provide alternative logic.
protected DestroyWindowOverride ( HWND hwnd ) : void
hwnd AdvancedLauncher.Tools.Win32.User32.HWND
return void
        protected virtual void DestroyWindowOverride(HWND hwnd)
        {
            NativeMethods.DestroyWindow(hwnd);
        }