// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
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,
}
}