mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-01 22:56:35 +08:00
15 lines
465 B
C#
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));
|
|
}
|
|
} |