在C#中要用什么代码才能获的屏幕的分辨率,高手说下。
发布网友
发布时间:1天前
我来回答
共2个回答
热心网友
时间:1天前
System.Windows.Forms.Screen screen=Screen.PrimaryScreen;
System.Drawing.Rectangle rct=screen.Bounds;
this.label1.Text=rct.Height.ToString();//高度
this.label2.Text=rct.Width.ToString();//宽度
热心网友
时间:1天前
Rectangle rect = System.Windows.Forms.SystemInformation.VirtualScreen;
Rectangle rect = SystemInformation.WorkingArea;