mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
23 lines
478 B
C#
23 lines
478 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,
|
|
}
|
|
}
|