namespace Avalonia.Controls
{
///
/// Defines the minimized/maximized state of a .
///
public enum WindowState
{
///
/// The window is neither minimized or maximized.
///
Normal,
///
/// The window is minimized.
///
Minimized,
///
/// The window is maximized.
///
Maximized,
///
/// The window is fullscreen.
///
FullScreen,
}
}