Fixed documentation and made WindowState.Normal the default.

This commit is contained in:
the_fiddler 2008-04-20 17:49:07 +00:00
parent 664d88785b
commit 5b081252e0

View file

@ -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
}