C#获取荧幕的大小

C#获取屏幕的大小C#获取屏幕大小:Rectangle rectSystem.Windows.Forms.SystemInformation.VirtualScreen

C#获取屏幕的大小

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