C#获取屏幕的大小
C#获取屏幕大小:
Rectangle rect=System.Windows.Forms.SystemInformation.VirtualScreen;int width=rect.Width;int height=rect.Height;