OpenTK Windows应用程序屏幕大小?

时间:2017-02-20 02:01:42

标签: c# visual-studio opengl opentk

我正在开发一个OpenTK的小项目,我想获得主显示器的屏幕分辨率。我的应用程序是一个Windows应用程序,我试图使用
width = Screen.PrimaryScreen.Bounds.Width;
但是当前上下文中不存在名称“屏幕”。
我已经包含了所需的使用语句,有没有其他方法可以获得屏幕大小?

1 个答案:

答案 0 :(得分:1)

尝试使用DisplayDevice

 int width = DisplayDevice.Default.Width;
 int height = DisplayDevice.Default.Height;

Source here