📜  wpf 获取屏幕大小 - C# (1)

📅  最后修改于: 2023-12-03 15:35:45.163000             🧑  作者: Mango

WPF获取屏幕大小 - C#

在WPF中,我们可以通过System.Windows.Forms.Screen.PrimaryScreen.Bounds属性来获取主屏幕的大小,同时也可以通过Screen.AllScreens属性来获取所有屏幕的大小。

以下是获取主屏幕大小的代码片段(C#):

using System.Windows.Forms;

// 获取主屏幕大小
Rectangle bounds = Screen.PrimaryScreen.Bounds;
double width = bounds.Width;
double height = bounds.Height;

以下是获取所有屏幕大小的代码片段(C#):

using System.Windows.Forms;

// 获取所有屏幕大小
Screen[] screens = Screen.AllScreens;
foreach (Screen screen in screens)
{
    Rectangle bounds = screen.Bounds;
    double width = bounds.Width;
    double height = bounds.Height;
}

以上是WPF中获取屏幕大小的简介和代码片段。