Is it possible to associate the 'Ctrl' + '-' to a ButtonTool?
objButtonTool.SharedProps.Shortcut = ???
There is no such a combination in System.Windows.Forms.Shortcut enumeration...
Oh, found by myself
objButtonTool.SharedProps.Shortcut = CType(Keys.Control Or Keys.Subtract, System.Windows.Forms.Shortcut)