| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- using System;
- using System.Runtime.InteropServices;
- using System.Windows;
- using System.Windows.Interop;
- namespace Muchinfo.PC.Common.Helpers
- {
- /// <summary>
- /// 避免窗口最大化时遮盖任务栏
- /// </summary>
- public static class FullScreenManager
- {
- private static Window _window;
- public static void RepairWpfWindowFullScreenBehavior(Window wpfWindow)
- {
- if (wpfWindow == null)
- {
- return;
- }
- _window = wpfWindow;
- if (wpfWindow.WindowState == WindowState.Maximized)
- {
- wpfWindow.WindowState = WindowState.Normal;
- wpfWindow.Loaded += delegate { wpfWindow.WindowState = WindowState.Maximized; };
- }
- wpfWindow.SourceInitialized += delegate
- {
- IntPtr handle = (new WindowInteropHelper(wpfWindow)).Handle;
- HwndSource source = HwndSource.FromHwnd(handle);
- if (source != null)
- {
- source.AddHook(WindowProc);
- }
- };
- }
- private static IntPtr WindowProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
- {
- switch (msg)
- {
- case 0x0024:
- WmGetMinMaxInfo(hwnd, lParam);
- handled = true;
- break;
- }
- return (IntPtr)0;
- }
- private static void WmGetMinMaxInfo(IntPtr hwnd, IntPtr lParam)
- {
- var mmi = (MINMAXINFO)Marshal.PtrToStructure(lParam, typeof(MINMAXINFO));
- // 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);
- if (monitor != IntPtr.Zero)
- {
- var 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);
- ////添加窗口最小Size控制,否则即使窗口设置了最小高宽也不启作用
- if (_window != null)
- {
- if (_window.MinWidth > 0) mmi.ptMinTrackSize.x = (int)_window.MinWidth;
- if (_window.MinHeight > 0) mmi.ptMinTrackSize.y = (int)_window.MinHeight;
- }
- }
- Marshal.StructureToPtr(mmi, lParam, true);
- }
- [DllImport("user32")]
- internal static extern bool GetMonitorInfo(IntPtr hMonitor, MONITORINFO lpmi);
- /// <summary>
- ///
- /// </summary>
- [DllImport("User32")]
- internal static extern IntPtr MonitorFromWindow(IntPtr handle, int flags);
- #region Nested type: MINMAXINFO
- [StructLayout(LayoutKind.Sequential)]
- internal struct MINMAXINFO
- {
- public POINT ptReserved;
- public POINT ptMaxSize;
- public POINT ptMaxPosition;
- public POINT ptMinTrackSize;
- public POINT ptMaxTrackSize;
- } ;
- #endregion
- #region Nested type: MONITORINFO
- /// <summary>
- /// </summary>
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
- internal class MONITORINFO
- {
- /// <summary>
- /// </summary>
- public int cbSize = Marshal.SizeOf(typeof(MONITORINFO));
- /// <summary>
- /// </summary>
- public RECT rcMonitor;
- /// <summary>
- /// </summary>
- public RECT rcWork;
- /// <summary>
- /// </summary>
- public int dwFlags;
- }
- #endregion
- #region Nested type: POINT
- /// <summary>
- /// POINT aka POINTAPI
- /// </summary>
- [StructLayout(LayoutKind.Sequential)]
- internal struct POINT
- {
- /// <summary>
- /// x coordinate of point.
- /// </summary>
- public int x;
- /// <summary>
- /// y coordinate of point.
- /// </summary>
- public int y;
- /// <summary>
- /// Construct a point of coordinates (x,y).
- /// </summary>
- public POINT(int x, int y)
- {
- this.x = x;
- this.y = y;
- }
- }
- #endregion
- #region Nested type: RECT
- /// <summary> Win32 </summary>
- [StructLayout(LayoutKind.Sequential, Pack = 0)]
- internal struct RECT
- {
- /// <summary> Win32 </summary>
- public int left;
- /// <summary> Win32 </summary>
- public int top;
- /// <summary> Win32 </summary>
- public int right;
- /// <summary> Win32 </summary>
- public int bottom;
- /// <summary> Win32 </summary>
- public static readonly RECT Empty;
- /// <summary> Win32 </summary>
- public int Width
- {
- get { return Math.Abs(right - left); } // Abs needed for BIDI OS
- }
- /// <summary> Win32 </summary>
- public int Height
- {
- get { return bottom - top; }
- }
- /// <summary> Win32 </summary>
- public RECT(int left, int top, int right, int bottom)
- {
- this.left = left;
- this.top = top;
- this.right = right;
- this.bottom = bottom;
- }
- /// <summary> Win32 </summary>
- public RECT(RECT rcSrc)
- {
- left = rcSrc.left;
- top = rcSrc.top;
- right = rcSrc.right;
- bottom = rcSrc.bottom;
- }
- /// <summary> Win32 </summary>
- public bool IsEmpty
- {
- get
- {
- // BUGBUG : On Bidi OS (hebrew arabic) left > right
- return left >= right || top >= bottom;
- }
- }
- /// <summary> Return a user friendly representation of this struct </summary>
- public override string ToString()
- {
- if (this == Empty)
- {
- return "RECT {Empty}";
- }
- return "RECT { left : " + left + " / top : " + top + " / right : " + right + " / bottom : " + bottom +
- " }";
- }
- /// <summary> Determine if 2 RECT are equal (deep compare) </summary>
- public override bool Equals(object obj)
- {
- if (!(obj is Rect))
- {
- return false;
- }
- return (this == (RECT)obj);
- }
- /// <summary>Return the HashCode for this struct (not garanteed to be unique)</summary>
- public override int GetHashCode()
- {
- return left.GetHashCode() + top.GetHashCode() + right.GetHashCode() + bottom.GetHashCode();
- }
- /// <summary> Determine if 2 RECT are equal (deep compare)</summary>
- public static bool operator ==(RECT rect1, RECT rect2)
- {
- return (rect1.left == rect2.left && rect1.top == rect2.top && rect1.right == rect2.right &&
- rect1.bottom == rect2.bottom);
- }
- /// <summary> Determine if 2 RECT are different(deep compare)</summary>
- public static bool operator !=(RECT rect1, RECT rect2)
- {
- return !(rect1 == rect2);
- }
- }
- #endregion
- }
- }
|