Пример #1
0
 internal static extern bool GetMonitorInfo(IntPtr hMonitor, MONITORINFO lpmi);
Пример #2
0
 // Handles the WM_GETMINMAXINFO window message for correctly computing the maximized window size
 private static IntPtr _shellWindowProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled) {
    switch (msg) {
       case 0x0024:
          // Adjust the maximized size and position to fit the work area of the correct monitor
          int MONITOR_DEFAULTTONEAREST = 0x00000002;
          IntPtr monitor = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
          MINMAXINFO mmi = (MINMAXINFO)Marshal.PtrToStructure(lParam, typeof(MINMAXINFO));
          if (monitor != IntPtr.Zero) {
             MONITORINFO monitorInfo = new MONITORINFO();
             GetMonitorInfo(monitor, monitorInfo);
             RECT rcWorkArea = monitorInfo.rcWork;
             RECT rcMonitorArea = monitorInfo.rcMonitor;
             mmi.ptMaxPosition.x = Math.Abs(rcWorkArea.left - rcMonitorArea.left);
             mmi.ptMaxPosition.y = Math.Abs(rcWorkArea.top - rcMonitorArea.top);
             mmi.ptMaxSize.x = Math.Abs(rcWorkArea.right - rcWorkArea.left);
             mmi.ptMaxSize.y = Math.Abs(rcWorkArea.bottom - rcWorkArea.top);
          }
          Marshal.StructureToPtr(mmi, lParam, true);
          handled = true;
          break;
    }
    return (IntPtr)0;
 }