在Tao Opengl中设置全屏
使用 Tao.Platform.Windows 中的 SimpleOpenGlControl,如何将其设置为全屏模式,或者我必须使用 glut 吗?
我的解决方案
FormBorderStyle = FormBorderStyle.None;
WindowState = FormWindowState.Maximized;
Using the SimpleOpenGlControl from Tao.Platform.Windows, how can I set it to fullscreen mode, or will I have to use glut?
My Solution
FormBorderStyle = FormBorderStyle.None;
WindowState = FormWindowState.Maximized;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的解决方案很好,并且已经过测试,可以在所有情况下按预期工作(作为 Tai 和 OpenTK 开发人员发言)。
Your solution is fine and has been tested to work as expected under all circumstances (speaking as a Tao & OpenTK developer).
这里有一些关于将 SimpleOpenGlControl 设置为全屏的讨论。
Here is some discussion about setting SimpleOpenGlControl to fullscreen.