首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

C#获取荧幕的大小

2012-08-28 
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;

热点排行