Files
ShrlAlgoToolkit/WPFluent/Controls/MessageWindow/MessageBoxButton.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

29 lines
728 B
C#

// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
// Copyright (C) Leszek Pomianowski and WPF UI Contributors.
// All Rights Reserved.
// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
/// <summary>
/// Defines constants that specify the default button on a <see cref="MessageWindow"/>.
/// </summary>
public enum MessageBoxButton
{
/// <summary>
/// The primary button
/// </summary>
Primary,
/// <summary>
/// The secondary button
/// </summary>
Accent,
/// <summary>
/// The close button
/// </summary>
Close,
}