Hi,
I have a ton of commands in my application and am running out of keys to use. So, I thought I would use a combination of shortcuts to get what I'm looking for (much like Visual Studio does bookmarks).
I thought I could add to the collection of KeyboardShotcuts to achieve this, but that does seem to be the case:
foreach (var keys in ((CommandBase) command).ShortcutKeys)
KeyboardShortcuts.Add(new BarKeyboardShortcut(null, 0, keys));
Is this possible to do?