using System;
namespace OForms.Windows
{
///
/// The State of a window.
///
public enum WindowState
{
///
/// The window is Maximized.
///
Maximized,
///
/// The window is Minimized.
///
Minimized,
///
/// The window is neither Minimized, nor Maximized.
///
Normal,
}
}