Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要禁用/删除窗口形式的最小化和最大化按钮。我不知道如何从我的 OpenTK.GameWindow 访问表单,感谢任何帮助。
这看似简单:
WindowBorder = WindowBorder.Hidden;
GameWindow 不使用 WinForms,它直接调用底层平台(性能!)
编辑:还是您的意思是保留关闭按钮但删除最小化/最大化?最接近这一点的是:
WindowBorder = WindowBorder.Fixed;