I need to create input binding for Window.
public class MainWindow : Window { public MainWindow() { SomeCommand = ??? () => OnAction(); } public ICommand SomeCommand { get; private set; } public void OnAction() { SomeControl.DoSomething(); } }
<Window> <Window.InputBindings> <KeyBinding Command="{Binding SomeCommand}" Key="F5"></KeyBinding> </Window.InputBindings> </Window>
If I init SomeCommand
with some CustomCommand : ICommand
it doesn't fire. SomeCommand
property getter is never called.
For your case best way used MVVM pattern
XAML:
<Window> <Window.InputBindings> <KeyBinding Command="{Binding SomeCommand}" Key="F5"/> </Window.InputBindings> </Window>
Code behind:
public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } }
In your view-model:
public class MyViewModel { private ICommand someCommand; public ICommand SomeCommand { get { return someCommand ?? (someCommand = new ActionCommand(() => { MessageBox.Show("SomeCommand"); })); } } }
Then you'll need an implementation of ICommand
. This simple helpful class.
public class ActionCommand : ICommand { private readonly Action _action; public ActionCommand(Action action) { _action = action; } public void Execute(object parameter) { _action(); } public bool CanExecute(object parameter) { return true; } public event EventHandler CanExecuteChanged; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With