c#

位置:IT落伍者 >> c# >> 浏览文章

C#获取屏幕分辨率


发布日期:2021年06月10日
 
C#获取屏幕分辨率

using SystemWindowsForms;

获取屏幕分辨率

int SH = ScreenPrimaryScreenBoundsHeight;

int SW = ScreenPrimaryScreenBoundsWidth;

获取窗口居中Top和Left

int thisH=;

int thisW=;

int SH = (ScreenPrimaryScreenBoundsHeight thisH) / ;

int SW = (ScreenPrimaryScreenBoundsWidth thisW) / ;

上一篇:C#.NET实现文件夹的复制

下一篇:如何在C#的WinForm中制作饼状图和柱状图