ACAT.Lib.Core.Utility.Windows.RestoreWindow C# (CSharp) Метод

RestoreWindow() публичный статический Метод

Restores the window from the maximized position
public static RestoreWindow ( IntPtr handle ) : void
handle System.IntPtr window handle
Результат void
        public static void RestoreWindow(IntPtr handle)
        {
            if (handle != IntPtr.Zero)
            {
                User32Interop.ShowWindow(handle.ToInt32(), ShowWindowFlags.SW_RESTORE);
            }
        }