Application Level shortcut keys in WPF

有些话、适合烂在心里 提交于 2019-11-27 06:54:35

问题


In WPF application I am currently trying to bind a Command to launch a calculator Tool form any where in the application using shortcut keys, I have created a command but not getting how to map commands and shortcut keys to create universal shortcut keys in my application. Thanks in advance.


回答1:


You can do this in xaml - see the example in the documentation for the KeyBinding class:

<Window.InputBindings>
  <KeyBinding Command="ApplicationCommands.Open"
              Gesture="CTRL+R" />
</Window.InputBindings>

Update: Looks like you can't actually bind a KeyBinding to a ViewModel using just xaml if you're using MVVM: see here Keybinding a RelayCommand.




回答2:


In WPF in order to use shortcuts you need to focus the respective controller. However with InputManager you can capture all sorts of inputs of your application. Here you don't need to have focus on the respective controller.

First you have to subscrbe the event.

InputManager.Current.PreProcessInput -= Current_PreProcessInput;
InputManager.Current.PreProcessInput += Current_PreProcessInput;

Then,

private void Current_PreProcessInput(object sender, PreProcessInputEventArgs args)
    {
        try
        {
            if (args != null && args.StagingItem != null && args.StagingItem.Input != null)
            {
                InputEventArgs inputEvent = args.StagingItem.Input;

                if (inputEvent is KeyboardEventArgs)
                {
                    KeyboardEventArgs k = inputEvent as KeyboardEventArgs;
                    RoutedEvent r = k.RoutedEvent;
                    KeyEventArgs keyEvent = k as KeyEventArgs;

                    if (r == Keyboard.KeyDownEvent)
                    {
                    }

                    if (r == Keyboard.KeyUpEvent)
                    {
                    }
                }
            }
        }
        catch (Exception ex)
        {

        }
    }

Like this you can filter out all the unwanted stuff and get the required input. Since this is for a shortcut capturing application I only took the KeyDown and KeyUp event.

You can also get all the details of the key which is pressed

keyEvent.Key.ToString()


来源:https://stackoverflow.com/questions/1319425/application-level-shortcut-keys-in-wpf

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!