wpf – 如何找到最大化窗口的位置?

前端之家收集整理的这篇文章主要介绍了wpf – 如何找到最大化窗口的位置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要知道一个最大化的窗口的位置.

WPF窗口具有指定窗口位置的顶和左属性.但是,如果最大化窗口,这些属性将保持窗口的值处于正常状态.

如果您在单屏幕设置中运行,则最大化的位置是(0,0).但是,如果您有多个屏幕不一定是正确的.如果在主屏幕上最大化,窗口将只有位置(0,0).

那么…有没有办法找出一个最大化的窗口的位置(最好是和顶部和左边的属性相同的逻辑单元)?

我终于找到了一个为我工作的解决方案:
private 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;
}
原文链接:https://www.f2er.com/windows/363675.html

猜你在找的Windows相关文章