运行结果如下;
由于屏幕的任务栏在侧面所以屏幕宽度变化。
代码如下
cs
private void Form1_Load(object sender, EventArgs e)
{
int SH = Screen.PrimaryScreen.Bounds.Height; //1080
int SW = Screen.PrimaryScreen.Bounds.Width; //1920
System.Drawing.Rectangle rec = Screen.GetWorkingArea(this);
int SH2 = rec.Height;
int SW2 = rec.Width;
//在运行之后,发现与设置屏幕分辨率不一样。
//经发现,在使用Rectangle获取屏幕分辨率会除去任务栏的高度或者宽度。
richTextBox1.AppendText($"屏幕分辨率{SH} {SW}");
richTextBox1.AppendText($"\r\n");
richTextBox1.AppendText($"工作区分辨率{SH2} {SW2}");
}
特此记录
anlog
2023年9月11日