C# WinForm 获取屏幕分辨率大小
1 | // 获取屏幕分辨率 |
2 | int SH = Screen.PrimaryScreen.Bounds.Height; |
3 | int SW = Screen.PrimaryScreen.Bounds.Width; |
转载于:https://blog.51cto.com/01258/568099
1 | // 获取屏幕分辨率 |
2 | int SH = Screen.PrimaryScreen.Bounds.Height; |
3 | int SW = Screen.PrimaryScreen.Bounds.Width; |
转载于:https://blog.51cto.com/01258/568099