第1个回答 2010-01-19
Rectangle rect = new Rectangle();
rect = Screen.GetWorkingArea(this);
rect.Width;//屏幕宽
rect.Height;//屏幕高本回答被提问者和网友采纳
第2个回答 2010-01-20
Console.WriteLine("高度"+Screen.PrimaryScreen.WorkingArea.Height+"宽度"+Screen.PrimaryScreen.WorkingArea.Width);
第3个回答 2010-01-21
System.Drawing.Rectangle rect =
System.Windows.Forms.Screen.PrimaryScreen.Bounds;
int h = rect.Height; //高(像素)
int w = rect.Width; //宽(像素)