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
Is your feature request related to a problem? Please describe.
The program I'm designing supports key input sequences, for example, Ctrl + K followed by another key combo, and I wanted to show some of them in the menu for ease of access.
The problem is that the InputGesture property automatically modifies what you put in there, e.g Ctrl + K, S becomes just Ctrl+S (spaces are removed too), or Ctrl+N,S becomes Ctrl+T (key changes completely)
Describe the solution you'd like
If the InputGesture property is just a text and doesn't do anything, I don't see why it changes what you put in there. In my opinion it should just show whatever the programmer intended (even if it parses it to something else)
Describe alternatives you've considered
I guess the reason for parsing is to handle localization of key combos. So another solution is having another property, say, Hint that only shows a text with a muted color (similar to InputGesture) next to the menu (without parsing)
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The program I'm designing supports key input sequences, for example,
Ctrl + K
followed by another key combo, and I wanted to show some of them in the menu for ease of access.The problem is that the
InputGesture
property automatically modifies what you put in there, e.gCtrl + K, S
becomes justCtrl+S
(spaces are removed too), orCtrl+N,S
becomesCtrl+T
(key changes completely)Describe the solution you'd like
If the
InputGesture
property is just a text and doesn't do anything, I don't see why it changes what you put in there. In my opinion it should just show whatever the programmer intended (even if it parses it to something else)Describe alternatives you've considered
I guess the reason for parsing is to handle localization of key combos. So another solution is having another property, say,
Hint
that only shows a text with a muted color (similar toInputGesture
) next to the menu (without parsing)The text was updated successfully, but these errors were encountered: