77

如何找出整个桌面的大小?不是“工作区域”,也不是“屏幕分辨率”,两者都只指一个屏幕。我想找出每台显示器只显示一部分的虚拟桌面的总宽度和高度。

4

11 回答 11

132

你有两个选择:

  1. PresentationFramework.dll

    SystemParameters.VirtualScreenWidth   
    SystemParameters.VirtualScreenHeight
    
  2. System.Windows.Forms.dll

    SystemInformation.VirtualScreen.Width   
    SystemInformation.VirtualScreen.Height
    

如果您开发 WPF 应用程序,请使用第一个选项。

于 2011-11-08T17:53:24.923 回答
31

我认为是时候用一点 LINQ 来更新这个答案了,这使得用一个表达式很容易获得整个桌面大小。

Console.WriteLine(
    Screen.AllScreens.Select(screen=>screen.Bounds)
    .Aggregate(Rectangle.Union)
    .Size
);

我原来的答案如下:


我想你想要的是这样的:

int minx, miny, maxx, maxy;
minx = miny = int.MaxValue;
maxx = maxy = int.MinValue;

foreach(Screen screen in Screen.AllScreens){
    var bounds = screen.Bounds;
    minx = Math.Min(minx, bounds.X);
    miny = Math.Min(miny, bounds.Y);
    maxx = Math.Max(maxx, bounds.Right);
    maxy = Math.Max(maxy, bounds.Bottom);
}

Console.WriteLine("(width, height) = ({0}, {1})", maxx - minx, maxy - miny);

请记住,这并不能说明全部。多个显示器可以交错排列,或者排列成非矩形。因此,可能并非 (minx, miny) 和 (maxx, maxy) 之间的所有空间都是可见的。

编辑:

我刚刚意识到使用以下代码可能会更简单一些Rectangle.Union

Rectangle rect = new Rectangle(int.MaxValue, int.MaxValue, int.MinValue, int.MinValue);

foreach(Screen screen in Screen.AllScreens)
    rect = Rectangle.Union(rect, screen.Bounds);

Console.WriteLine("(width, height) = ({0}, {1})", rect.Width, rect.Height);
于 2009-08-22T22:55:41.497 回答
15

查看:

SystemInformation.VirtualScreen.Width
SystemInformation.VirtualScreen.Height
于 2011-03-07T09:17:07.903 回答
7

To get the physical pixel size of the monitor you can use this.

static class DisplayTools
{
    [DllImport("gdi32.dll")]
    static extern int GetDeviceCaps(IntPtr hdc, int nIndex);

    private enum DeviceCap
    {
        Desktopvertres = 117,
        Desktophorzres = 118
    }

    public static Size GetPhysicalDisplaySize()
    {
        Graphics g = Graphics.FromHwnd(IntPtr.Zero);
        IntPtr desktop = g.GetHdc();

        int physicalScreenHeight = GetDeviceCaps(desktop, (int)DeviceCap.Desktopvertres);
        int physicalScreenWidth = GetDeviceCaps(desktop, (int)DeviceCap.Desktophorzres);

        return new Size(physicalScreenWidth, physicalScreenHeight);
    }


}
于 2017-04-27T11:28:31.880 回答
6

这并不能回答问题,而只是增加了对所有屏幕内窗口点(位置)的额外洞察)。

使用下面的代码来确定一个点(例如窗口的最后一个已知位置)是否在整个桌面的范围内。如果没有,将窗口的 Location 重置为默认的pBaseLoc

代码不考虑任务栏或其他工具栏,你自己在那里。

使用示例:将窗口位置从站 A保存到数据库。用户使用 2 个监视器登录B 站并将窗口移动到第 2 个监视器,注销并保存新位置。回到A 站,除非使用上面的代码,否则不会显示窗口。

我的进一步解决方案是将用户 ID 和电台的 IP(和 winLoc)保存到给定应用程序的数据库或本地用户首选项文件中,然后加载该电台和应用程序的用户首选项。

Point pBaseLoc = new Point(40, 40)
int x = -500, y = 140;
Point pLoc = new Point(x, y);
bool bIsInsideBounds = false;

foreach (Screen s in Screen.AllScreens)
{
    bIsInsideBounds = s.Bounds.Contains(pLoc);
    if (bIsInsideBounds) { break; }
}//foreach (Screen s in Screen.AllScreens)

if (!bIsInsideBounds) { pLoc = pBaseLoc;  }

this.Location = pLoc;
于 2010-07-29T18:35:55.487 回答
3

我认为获得“真实”屏幕尺寸的最佳方法是直接从视频控制器获取值。


    using System;
    using System.Management;
    using System.Windows.Forms;

    namespace MOS
    {
        public class ClassMOS
        {
            public static void Main()
            {
                try
                {
                    ManagementObjectSearcher searcher = 
                        new ManagementObjectSearcher("root\\CIMV2", 
                        "SELECT * FROM Win32_VideoController"); 

                    foreach (ManagementObject queryObj in searcher.Get())
                    {
                        Console.WriteLine("CurrentHorizontalResolution: {0}", queryObj["CurrentHorizontalResolution"]);
                        Console.WriteLine("-----------------------------------");
                        Console.WriteLine("CurrentVerticalResolution: {0}", queryObj["CurrentVerticalResolution"]);
                    }
                }
                catch (ManagementException e)
                {
                    MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
                }
            }
        }
}

这应该可以完成工作;)问候...

于 2016-12-10T17:28:07.377 回答
1

您可以使用 的边界System.Drawing

您可以创建这样的功能

public System.Windows.Form.Screen[] GetScreens(){
    Screen[] screens = Screen.AllScreens;
    return screens;
}

并且您可以在这样的变量中获得屏幕一、二等:

System.Windows.Form.Screen[] screens = func.GetScreens();
System.Windows.Form.Screen screen1 = screens[0];

然后你可以得到屏幕的边界:

System.Drawing.Rectangle screen1Bounds = screen1.Bounds;

使用此代码,您将获得所有属性,如Width,Height等。

于 2015-01-16T15:43:05.243 回答
1

此方法通过使用 Left 和 Top 的最低值以及 Right 和 Bottom 的最高值来返回包含所有屏幕边界的矩形...

static Rectangle GetDesktopBounds() {
   var l = int.MaxValue;
   var t = int.MaxValue;
   var r = int.MinValue;
   var b = int.MinValue;
   foreach(var screen in Screen.AllScreens) {
      if(screen.Bounds.Left   < l) l = screen.Bounds.Left  ;
      if(screen.Bounds.Top    < t) t = screen.Bounds.Top   ;
      if(screen.Bounds.Right  > r) r = screen.Bounds.Right ;
      if(screen.Bounds.Bottom > b) b = screen.Bounds.Bottom;
   }
   return Rectangle.FromLTRB(l, t, r, b);
}
于 2016-02-11T05:37:20.470 回答
1

获取没有任何依赖关系的虚拟显示器的大小

public enum SystemMetric
{
    VirtualScreenWidth = 78, // CXVIRTUALSCREEN 0x0000004E 
    VirtualScreenHeight = 79, // CYVIRTUALSCREEN 0x0000004F 
}

[DllImport("user32.dll")]
public static extern int GetSystemMetrics(SystemMetric metric);

public static Size GetVirtualDisplaySize()
{
    var width = GetSystemMetrics(SystemMetric.VirtualScreenWidth);
    var height = GetSystemMetrics(SystemMetric.VirtualScreenHeight);

    return new Size(width, height);
}
于 2018-11-20T11:57:48.450 回答
0

来自 SM_XVIRTUALSCREEN 等的值是物理坐标,不等于控制面板中屏幕缩放 125%、150%、175% 时的逻辑坐标。

于 2021-09-21T10:45:17.920 回答
0

您会发现许多窗口操作尚不可用或可能永远不可用。我在 PInvoke.User32 nuget 包方面取得了最大的成功。

var screenX = PInvoke.User32.GetSystemMetrics(PInvoke.User32.SystemMetric.SM_CXSCREEN);
var screenY = PInvoke.User32.GetSystemMetrics(PInvoke.User32.SystemMetric.SM_CYSCREEN);
于 2021-12-16T18:31:00.847 回答