日期:2014-05-18  浏览次数:21124 次

C#获取屏幕的大小

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