C#获取用户显示器宽度和高度
今天遇到了这个问题,所以把方法共享给大家。获取用户显示器的宽度和高度以后,有利于美化窗体出现的效果及大小
就两句代码:
//用户显示器宽度
int a= System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
//用户显示器高度
int b = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
谢谢分享!!! 谢谢分享!!!
页:
[1]