Files
aistudio-wpf-diagram/Fluent.Ribbon/Fluent.Ribbon/RibbonCommands.cs
2021-07-23 09:42:22 +08:00

15 lines
465 B
C#

namespace Fluent
{
using System.Windows.Input;
/// <summary>
/// Class for several commands belonging to the Ribbon
/// </summary>
public static class RibbonCommands
{
/// <summary>
/// Gets the value that represents the Open Backstage command
/// </summary>
public static readonly RoutedCommand OpenBackstage = new RoutedUICommand("Open backstage", nameof(OpenBackstage), typeof(RibbonCommands));
}
}