Answers for "c# get display resolution"

C#
0

c# get display resolution

string screenWidth = Screen.PrimaryScreen.Bounds.Width.ToString();
string screenHeight = Screen.PrimaryScreen.Bounds.Height.ToString();
Label1.Text = ("Resolution: " + screenWidth + "x" + screenHeight);
Posted by: Guest on April-30-2021

Code answers related to "c# get display resolution"

C# Answers by Framework

Browse Popular Code Answers by Language