两种方法:
1.
Rectangle rect = Screen.GetWorkingArea(this);
int width =
rect.Width;
int height = rect.Height;
2.
Rectangle rect = System.Windows.Forms.SystemInformation.VirtualScreen;
int width = rect.Width;
int height = rect.Height;
C#Winform获取屏幕大小,布布扣,bubuko.com
原文:http://www.cnblogs.com/vincentDr/p/3576385.html