有个SystemInformation类,用它的VirtualScreen可以得到屏幕的相关信息。
如得到VirtualScreen的宽和高就是屏幕的分辨率。
private void Form1_Load(object sender, EventArgs e) { int wd= SystemInformation.VirtualScreen.Width; int wh = SystemInformation.VirtualScreen.Height; MessageBox.Show(string.Format("{0}X{1}", wd, wh)); }