Is there a way to set the view for exclusive mode just like Direct x under window using the OpenTK
For GameWindow, set WindowState = WindowState.Fullscreen. Alternatively, you can specify GameWindowFlags.Fullscreen in the constructor.
WindowState = WindowState.Fullscreen
GameWindowFlags.Fullscreen
For GLControl, disable the border of the parent Form and maximize it.
ok I did already did find this out before posting this question I was just wandering if there was a way to set an exclusive mode like in Direct X
thanks for the replay
This *is* exclusive mode. Try taking a screenshot with print-screen - it will come up blank, which indicates that the window manager has been turned off.
Comments
Re: Seting Exclusive mode
For GameWindow, set
WindowState = WindowState.Fullscreen. Alternatively, you can specifyGameWindowFlags.Fullscreenin the constructor.For GLControl, disable the border of the parent Form and maximize it.
Re: Seting Exclusive mode
ok I did already did find this out before posting this question I was just wandering if there was a way to set an exclusive mode like in Direct X
thanks for the replay
Re: Seting Exclusive mode
This *is* exclusive mode. Try taking a screenshot with print-screen - it will come up blank, which indicates that the window manager has been turned off.