我的笔记本电脑屏幕分辨率为1920 *1080。但是以下调用给出了不同的分辨率-1280 *720。如何获得正确的屏幕分辨率?我使用Windows 10
serID ApplicationID Roles
11 1 1,5
11 3 5
答案 0 :(得分:0)
您的方法与第一种方法几乎是正确的。
这是您应该如何编码
int height = Screen.PrimaryScreen.Bounds.Size.Height;
int width = Screen.PrimaryScreen.Bounds.Size.Width;