在C#中,要处理显示器配置并显示相关信息,可以使用System.Windows.Forms.Screen
类。以下是一个示例代码,展示了如何获取显示器分辨率、工作区大小以及可用屏幕区域等信息:
using System;
using System.Windows.Forms;
namespace EnumDisplayMonitors
{
class Program
{
[STAThread]
static void Main()
{
// 获取所有显示器
Screen[] screens = Screen.AllScreens;
// 遍历所有显示器
foreach (Screen screen in screens)
{
// 获取显示器的分辨率
Rectangle bounds = screen.Bounds;
int width = bounds.Width;
int height = bounds.Height;
// 获取显示器的工作区大小
Rectangle workingArea = screen.WorkingArea;
int workingWidth = workingArea.Width;
int workingHeight = workingArea.Height;
// 获取显示器的可用屏幕区域
Rectangle available = screen.Available;
int availableWidth = available.Width;
int availableHeight = available.Height;
// 输出显示器信息
Console.WriteLine($"Monitor: {screen.DeviceName}");
Console.WriteLine($"Resolution: {width}x{height}");
Console.WriteLine($"Working Area: {workingWidth}x{workingHeight}");
Console.WriteLine($"Available Area: {availableWidth}x{availableHeight}");
Console.WriteLine();
}
}
}
}
这个示例代码首先获取所有显示器,然后遍历每个显示器,获取其分辨率、工作区大小和可用屏幕区域等信息,并将这些信息输出到控制台。