如何获得屏幕的总像素大小

时间:2012-03-08 15:57:59

标签: vb.net

我正在编写一个生成图表的应用程序。我需要根据屏幕大小设置条形尺寸(以像素为单位) 如何使用vb.net代码获取总屏幕大小(以像素为单位)?

3 个答案:

答案 0 :(得分:3)

Screen.PrimaryScreen.Bounds.Width
Screen.PrimaryScreen.Bounds.Height

答案 1 :(得分:3)

您可以使用:

Screen.PrimaryScreen.Bounds.Width
Screen.PriamryScreen.Bounds.Height

或:

My.Computer.Screen.Bounds.Width
My.Computer.Screen.Bounds.Height

或者您可以查看Screen.WorkingArea,它会为您提供工作区域的尺寸(不包括停靠窗口,工具栏等)。

答案 2 :(得分:1)

也许是这样的:

Dim intX As Integer = Screen.PrimaryScreen.Bounds.Width
Dim intY As Integer = Screen.PrimaryScreen.Bounds.Height