标签: vb.net-2010
我需要知道如何知道vb-2010中的屏幕分辨率,例如在“TextBox”中显示屏幕分辨率。 如果可以,请知道帐户名称。
答案 0 :(得分:1)
你可以使用
Dim screenWidth as Integer = Screen.PrimaryScreen.Bounds.Width Dim screenHeight as Integer = Screen.PrimaryScreen.Bounds.Height
从explanation