Opentk/Source/OpenTK/WindowBorder.cs
the_fiddler ddcf5f6e44 Revert WindowBorder and WindowState value changes.
Use Nullable types to detect when WindowBorder and WindowState is not set.
2009-10-19 21:32:33 +00:00

25 lines
756 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK
{
/// <summary>
/// Enumerates available window borders.
/// </summary>
public enum WindowBorder
{
/// <summary>
/// The window has a resizable border. A window with a resizable border can be resized by the user or programmatically.
/// </summary>
Resizable = 0,
/// <summary>
/// The window has a fixed border. A window with a fixed border can only be resized programmatically.
/// </summary>
Fixed,
/// <summary>
/// The window does not have a border. A window with a hidden border can only be resized programmatically.
/// </summary>
Hidden
}
}