KeyBinding KeyBinding = new KeyBinding(
ApplicationCommands.Open,
Key.R,
ModifierKeys.Control);
this.InputBindings.Add(KeyBinding);
This is all i got till now for my Shortcut. I am new to C# WPF .
KeyBinding KeyBinding = new KeyBinding(
ApplicationCommands.Open,
Key.R,
ModifierKeys.Control);
this.InputBindings.Add(KeyBinding);
This is all i got till now for my Shortcut. I am new to C# WPF .