Hello, guys. How are you? I have a really tough problem here. I'm trying to build a screen where I will list all my possible keyboard shortcuts commands. At the moment I have a code in xaml like this:
<MenuItem x:Name="AddItems" Header=" Command="{Binding AddItemCmd}" InputGestureText="Ctrl+E"/>
The problem with this is that I need two shortcuts configurations: one default (global) and one the user can change and that InputGestureText won't help me with this.
I'm a former World of Warcraft player and I want to simulate its keybind screen idea, here is a picture:
( I can't post pictures yet, can you please search for "world of warcraft keybinds screen"?)
But in my idea the client won't be able to edit the 1st column, the 2nd column is where they will place their customized keybinds / shortcuts.
I've been thinking of some kind of a shortcut manager where I could list all the default and customized shortcuts then I could populate this screen with them, but I have no idea if that's possible. I did some research and I've only found tutorials about how
to set global hotkeys, but, in fact, I will have 2 sets of keys.
Can you guys point me what to use? WPF has something that can help me with that?
Thanks in advance,
Dom.