You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StatusBar uses parameter to StatusItem, and the Shortcut property (Key). (this is OK).
This should be made consistent.
In addition, they way Button works means there's no way to say "NO HOTKEY!" if you without doing all lower case, which is sub-optimal.
Proposal:
Change all controls to use the same logic MenuItem uses, which is to have the first instance of an underscore indicate the following char is the hotkey.
Ensure that a double underscore (__) means to treat the underscore as a literal.
Button
uses the first uppercase characterMenuItem
uses the underscore (_
) characterCheckBox
uses_
RadioGroup
uses_
StatusBar
uses parameter toStatusItem
, and theShortcut
property (Key
). (this is OK).This should be made consistent.
In addition, they way
Button
works means there's no way to say "NO HOTKEY!" if you without doing all lower case, which is sub-optimal.Proposal:
MenuItem
uses, which is to have the first instance of an underscore indicate the following char is the hotkey.__
) means to treat the underscore as a literal.See #455
The text was updated successfully, but these errors were encountered: