判断窗体是否最小化和最大化

[DllImport("user32.dll")]
        public static extern bool IsIconic(IntPtr hwnd);

        [DllImport("user32.dll")]
        public static extern bool IsZoomed(IntPtr hwnd);

 

你可能感兴趣的:(判断)