C# – Setting fullscreen in Tao Opengl

copengltao-framework

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;

Best Answer

Your solution is fine and has been tested to work as expected under all circumstances (speaking as a Tao & OpenTK developer).