public static void RestoreWindow(IntPtr hwnd)
 {
     NativeMethods.WINDOWPLACEMENT windowPlacement = new NativeMethods.WINDOWPLACEMENT();
     NativeMethods.GetWindowPlacement(hwnd, ref windowPlacement);
     windowPlacement.showCmd = 9; /* SW_RESTORE */
     NativeMethods.SetWindowPlacement(hwnd, ref windowPlacement);
 }
 public static void RestoreWindow(IntPtr hwnd)
 {
     NativeMethods.WINDOWPLACEMENT windowPlacement = new NativeMethods.WINDOWPLACEMENT();
     NativeMethods.GetWindowPlacement(hwnd, ref windowPlacement);
     windowPlacement.showCmd = 9; /* SW_RESTORE */
     NativeMethods.SetWindowPlacement(hwnd, ref windowPlacement);
 }