Fixed documentation and made WindowState.Normal the default.
This commit is contained in:
parent
664d88785b
commit
5b081252e0
1 changed files with 8 additions and 8 deletions
|
@ -13,24 +13,24 @@ using System.Text;
|
|||
namespace OpenTK
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the available states for the GameWindow.
|
||||
/// Enumerates available window states.
|
||||
/// </summary>
|
||||
public enum WindowState
|
||||
{
|
||||
/// <summary>
|
||||
/// The GameWindow is minimized to the taskbar (also known as 'iconified').
|
||||
/// The window is in its normal state.
|
||||
/// </summary>
|
||||
Normal = 0,
|
||||
/// <summary>
|
||||
/// The window is minimized to the taskbar (also known as 'iconified').
|
||||
/// </summary>
|
||||
Minimized,
|
||||
/// <summary>
|
||||
/// The GameWindow is in its normal state.
|
||||
/// </summary>
|
||||
Normal,
|
||||
/// <summary>
|
||||
/// The GameWindow covers the whole working area, which includes the desktop but not the taskbar and/or panels.
|
||||
/// The window covers the whole working area, which includes the desktop but not the taskbar and/or panels.
|
||||
/// </summary>
|
||||
Maximized,
|
||||
/// <summary>
|
||||
/// The GameWindow covers the whole screen, including all taskbars and/or panels.
|
||||
/// The window covers the whole screen, including all taskbars and/or panels.
|
||||
/// </summary>
|
||||
Fullscreen
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue