Answers for "get screen resolution using c#"

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 "get screen resolution using c#"

C# Answers by Framework

Browse Popular Code Answers by Language