我需要知道一个最大化的窗口的位置.
WPF窗口具有指定窗口位置的顶和左属性.但是,如果最大化窗口,这些属性将保持窗口的值处于正常状态.
如果您在单屏幕设置中运行,则最大化的位置是(0,0).但是,如果您有多个屏幕不一定是正确的.如果在主屏幕上最大化,窗口将只有位置(0,0).
那么…有没有办法找出一个最大化的窗口的位置(最好是和顶部和左边的属性相同的逻辑单元)?
我终于找到了一个为我工作的解决方案:
原文链接:https://www.f2er.com/windows/363675.htmlprivate System.Drawing.Rectangle getWindowRectangle() { System.Drawing.Rectangle windowRectangle; if (this.WindowState == System.Windows.WindowState.Maximized) { /* Here is the magic: * Use Winforms code to find the Available space on the * screen that contained the window * just before it was maximized * (Left,Top have their values from Normal WindowState) */ windowRectangle = System.Windows.Forms.Screen.GetWorkingArea( new System.Drawing.Point((int)this.Left,(int)this.Top)); } else { windowRectangle = new System.Drawing.Rectangle( (int)this.Left,(int)this.Top,(int)this.ActualWidth,(int)this.ActualHeight); } return windowRectangle; }