I need to disable/remove the minimize and maximize buttons in window form. I don't know how to access the form from my OpenTK.GameWindow, any help is appreciated.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

This is deceptively easy:

WindowBorder = WindowBorder.Hidden;

GameWindow does not use WinForms, it p/invokes the underlying platform directly (performance!)

Edit: or do you mean keep the close button but remove minimize/maximize? The closest to this is:

WindowBorder = WindowBorder.Fixed;
link|improve this answer
WindowBorder = WindowBorder.Fixed; Disabled the maximize button, but not the minimize button. Still, thanks for the help. – KobraX22 Nov 24 '10 at 4:38
Yes, that's by design - I dislike applications that disable those buttons unnecessarily. If you do need that kind of flexiblity, you might be better off with a UI-centric tool, like WinForms+GLControl or GTK#+GLWidget, rather than GameWindow. (GameWindow is closer to SDL or GLUT in the grand scheme of things). – The Fiddler Nov 24 '10 at 7:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.