24 lines
745 B
C#
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
|
|
} |