This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad/docs/_src/Extension/CommandsManager/CommandsAttribution.cs
2022-10-15 19:16:08 +02:00

24 lines
745 B
C#

using System.ComponentModel;
using Xarial.XCad.Base.Attributes;
using Xarial.XCad.Documentation.Properties;
[Title(typeof(Resources), nameof(Resources.ToolbarTitle))]
[Description("Command Group Title")]
[Icon(typeof(Resources), nameof(Resources.commands))]
public enum CommandsB_e
{
[Title("First Command")]
[Description("Hint text for first command")]
[Icon(typeof(Resources), nameof(Resources.command1))]
CommandB1,
[Title("Second Command")]
[Description("Hint text for second command")]
[Icon(typeof(Resources), nameof(Resources.command2))]
CommandB2,
[Title("Third Command")]
[Description("Hint text for third command")]
[Icon(typeof(Resources), nameof(Resources.command3))]
CommandB3
}