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

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

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

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

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

我终于找到了一个为我工作的解决方案:
  1. private System.Drawing.Rectangle getWindowRectangle()
  2. {
  3. System.Drawing.Rectangle windowRectangle;
  4.  
  5. if (this.WindowState == System.Windows.WindowState.Maximized)
  6. {
  7. /* Here is the magic:
  8. * Use Winforms code to find the Available space on the
  9. * screen that contained the window
  10. * just before it was maximized
  11. * (Left,Top have their values from Normal WindowState)
  12. */
  13. windowRectangle = System.Windows.Forms.Screen.GetWorkingArea(
  14. new System.Drawing.Point((int)this.Left,(int)this.Top));
  15. }
  16. else
  17. {
  18. windowRectangle = new System.Drawing.Rectangle(
  19. (int)this.Left,(int)this.Top,(int)this.ActualWidth,(int)this.ActualHeight);
  20. }
  21.  
  22. return windowRectangle;
  23. }

猜你在找的Windows相关文章