C# 获取屏幕的大小

WinForm

int iActulaWidth = Screen.PrimaryScreen.Bounds.Width;

int iActulaHeight = Screen.PrimaryScreen.Bounds.Height ;

 

WPF下的:

double dWidth = System.Windows.SystemParameters.PrimaryScreenWidth;

double dHeight = System.Windows.SystemParameters.PrimaryScreenHeight;

double dWidth2 = ActualWidth; //获取此元素的呈现宽度。若此元素时全屏的,则可以获得屏幕大小(-_-!!!)

double dHeight2 = ActualHeight; //获取此元素的呈现高度。

转自博客:
http://www.cnblogs.com/zp89850/archive/2011/08/23/2151052.html

上一篇:使用ASP.NET Core 3.x 构建 RESTful API P7 P8 内容协商


下一篇:c# Winfom客户端 GET 访问WebApi 方法