我通过HDMI将全高清电视连接到我的电脑,我正试图获得这种扩展显示的分辨率。
if (System.Windows.Forms.Screen.AllScreens.Length > 1)
{
Settings.TVWidth = System.Windows.Forms.Screen.AllScreens[1].Bounds.Width;
Settings.TVHeight = System.Windows.Forms.Screen.AllScreens[1].Bounds.Height;
}
当我在图形控件属性中更改此扩展显示的分辨率时,获得的值与我设置的值相同,直到1280 X 720。 任何更高的分辨率,如1920 X 1080p,仍然可以提供1280 X 720。
是否有其他方法可以获得此扩展显示的实际分辨率?
注意:我的电脑分辨率是1366 X 768