OpenTK Windows 应用程序屏幕大小?

OpenTK Windows Application screen size?

我正在 OpenTK 中做一个小项目,我想获得主显示器的屏幕分辨率。我的申请是windows申请,我试过用
width = Screen.PrimaryScreen.Bounds.Width;
但是名称 'screen' 在当前上下文中不存在。
我已经包含了所需的 using 语句,还有其他方法可以获取屏幕尺寸吗?

尝试使用 DisplayDevice

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

Source here