通常,对于文本框,我使用输入绑定将其绑定到视图模型中的命令。我是这样做的:
<TextBox.InputBindings>
<MouseBinding Gesture="LeftDoubleClick" Command="{Binding MyCommand}"/>
</TextBox.InputBindings>
如果我在文本框中设置了此功能,则可以使用,但是如果我在组合框中设置了此功能,则无法使用。
<ComboBox.InputBindings>
<MouseBinding Gesture="LeftDoubleClick" Command="{Binding MyCommand}"/>
</ComboBox.InputBindings>
我该如何绑定双击?
谢谢。