Added DefaultCommandID for split dropdown items

This commit is contained in:
Michael Becker 2014-06-26 11:28:20 -04:00
parent 717904120a
commit 40b9fd359c

View File

@ -35,6 +35,9 @@ namespace UniversalEditor.UserInterface
/// </summary>
public string Title { get { return mvarTitle; } set { mvarTitle = value; } }
private string mvarDefaultCommandID = String.Empty;
public string DefaultCommandID { get { return mvarDefaultCommandID; } set { mvarDefaultCommandID = value; } }
private CommandShortcutKey mvarShortcutKey = new CommandShortcutKey();
public CommandShortcutKey ShortcutKey { get { return mvarShortcutKey; } }