I'm working with the MVVM pattern in WPF (a bit new to both).
I'd like to set up an InputBinding
on a CheckBox
that corresponds to a Control + Click
event, but do not see a Modifiers
property on the MouseBinding
element. This is what I'd like to achieve (fictitious code, obviously- Modifiers doesn't exist):
<CheckBox>
<CheckBox.InputBindings>
<MouseBinding MouseAction="LeftClick"
Command="{Binding CheckboxControlClickCommand}"
Modifiers="Control" />
</CheckBox.InputBindings>
</CheckBox>
Any ideas on how to accomplish this without using events?
Thanks!
Use it with keybinding too!
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