WPF : Maximize window with WindowState Problem (application will hide windows taskbar)

前端 未结 6 1541
执笔经年
执笔经年 2020-12-30 01:30

I have set my main window state to \"Maximized\" but the problem is my application will fill the whole screen even task bar. what am i doing wrong ? I\'m using windows 2008

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-30 02:04

    To continue with my previous remark. I use the following code in my applications (source: Maximizing WPF windows

    using WinInterop = System.Windows.Interop;
    using System.Runtime.InteropServices;
    
        public MainWindow()
        {
            InitializeComponent();
            winMain.SourceInitialized += new EventHandler(win_SourceInitialized);
        }
    
    
        #region Avoid hiding task bar upon maximalisation
    
        private static System.IntPtr WindowProc(
              System.IntPtr hwnd,
              int msg,
              System.IntPtr wParam,
              System.IntPtr lParam,
              ref bool handled)
        {
            switch (msg)
            {
                case 0x0024:
                    WmGetMinMaxInfo(hwnd, lParam);
                    handled = true;
                    break;
            }
    
            return (System.IntPtr)0;
        }
    
        void win_SourceInitialized(object sender, EventArgs e)
        {
            System.IntPtr handle = (new WinInterop.WindowInteropHelper(this)).Handle;
            WinInterop.HwndSource.FromHwnd(handle).AddHook(new WinInterop.HwndSourceHook(WindowProc));
        }
    
        private static void WmGetMinMaxInfo(System.IntPtr hwnd, System.IntPtr lParam)
        {
    
            MINMAXINFO 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;
            System.IntPtr monitor = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
    
            if (monitor != System.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);
        }
    
        [StructLayout(LayoutKind.Sequential)]
        public struct POINT
        {
            /// 
            /// x coordinate of point.
            /// 
            public int x;
            /// 
            /// y coordinate of point.
            /// 
            public int y;
    
            /// 
            /// Construct a point of coordinates (x,y).
            /// 
            public POINT(int x, int y)
            {
                this.x = x;
                this.y = y;
            }
        }
    
        [StructLayout(LayoutKind.Sequential)]
        public struct MINMAXINFO
        {
            public POINT ptReserved;
            public POINT ptMaxSize;
            public POINT ptMaxPosition;
            public POINT ptMinTrackSize;
            public POINT ptMaxTrackSize;
        };
    
        void win_Loaded(object sender, RoutedEventArgs e)
        {
            winMain.WindowState = WindowState.Maximized;
        }
    
        [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
        public class MONITORINFO
        {
            /// 
            ///             
            public int cbSize = Marshal.SizeOf(typeof(MONITORINFO));
    
            /// 
            ///             
            public RECT rcMonitor = new RECT();
    
            /// 
            ///             
            public RECT rcWork = new RECT();
    
            /// 
            ///             
            public int dwFlags = 0;
        }
    
        [StructLayout(LayoutKind.Sequential, Pack = 0)]
        public struct RECT
        {
            ///  Win32 
            public int left;
            ///  Win32 
            public int top;
            ///  Win32 
            public int right;
            ///  Win32 
            public int bottom;
    
            ///  Win32 
            public static readonly RECT Empty = new RECT();
    
            ///  Win32 
            public int Width
            {
                get { return Math.Abs(right - left); }  // Abs needed for BIDI OS
            }
            ///  Win32 
            public int Height
            {
                get { return bottom - top; }
            }
    
            ///  Win32 
            public RECT(int left, int top, int right, int bottom)
            {
                this.left = left;
                this.top = top;
                this.right = right;
                this.bottom = bottom;
            }
    
    
            ///  Win32 
            public RECT(RECT rcSrc)
            {
                this.left = rcSrc.left;
                this.top = rcSrc.top;
                this.right = rcSrc.right;
                this.bottom = rcSrc.bottom;
            }
    
            ///  Win32 
            public bool IsEmpty
            {
                get
                {
                    // BUGBUG : On Bidi OS (hebrew arabic) left > right
                    return left >= right || top >= bottom;
                }
            }
            ///  Return a user friendly representation of this struct 
            public override string ToString()
            {
                if (this == RECT.Empty) { return "RECT {Empty}"; }
                return "RECT { left : " + left + " / top : " + top + " / right : " + right + " / bottom : " + bottom + " }";
            }
    
            ///  Determine if 2 RECT are equal (deep compare) 
            public override bool Equals(object obj)
            {
                if (!(obj is Rect)) { return false; }
                return (this == (RECT)obj);
            }
    
            /// Return the HashCode for this struct (not garanteed to be unique)
            public override int GetHashCode()
            {
                return left.GetHashCode() + top.GetHashCode() + right.GetHashCode() + bottom.GetHashCode();
            }
    
    
            ///  Determine if 2 RECT are equal (deep compare)
            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);
            }
    
            ///  Determine if 2 RECT are different(deep compare)
            public static bool operator !=(RECT rect1, RECT rect2)
            {
                return !(rect1 == rect2);
            }
    
    
        }
    
        [DllImport("user32")]
        internal static extern bool GetMonitorInfo(IntPtr hMonitor, MONITORINFO lpmi);
    
        [DllImport("user32.dll")]
        static extern bool GetCursorPos(ref Point lpPoint);
    
        [DllImport("User32")]
        internal static extern IntPtr MonitorFromWindow(IntPtr handle, int flags);
    
        #endregion
    

提交回复
热议问题