mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
23 lines
501 B
C#
23 lines
501 B
C#
using System;
|
|
|
|
namespace OForms.Windows
|
|
{
|
|
/// <summary>
|
|
/// The State of a window.
|
|
/// </summary>
|
|
public enum WindowState
|
|
{
|
|
/// <summary>
|
|
/// The window is Maximized.
|
|
/// </summary>
|
|
Maximized,
|
|
/// <summary>
|
|
/// The window is Minimized.
|
|
/// </summary>
|
|
Minimized,
|
|
/// <summary>
|
|
/// The window is neither Minimized, nor Maximized.
|
|
/// </summary>
|
|
Normal,
|
|
}
|
|
}
|