JP
Jonas Pettersson
October 31, 2007 09:46 AM UTC
I found a solution for this, which is not supported by the designer so do it in such a place that it is not executed by the designer.
The predefined Shortcuts enum values are simply combinations of Keys enum values.
You can make your own combination as follows:
myBarItem.Shortcut = (Shortcut)(Keys.Shift | Keys.Home);
/Jonas