为什么imput绑定不能与组合框一起使用?

时间:2020-11-06 10:21:38

标签: wpf mvvm

通常,对于文本框,我使用输入绑定将其绑定到视图模型中的命令。我是这样做的:

<TextBox.InputBindings>
    <MouseBinding Gesture="LeftDoubleClick" Command="{Binding MyCommand}"/>
</TextBox.InputBindings>

如果我在文本框中设置了此功能,则可以使用,但是如果我在组合框中设置了此功能,则无法使用。

<ComboBox.InputBindings>
    <MouseBinding Gesture="LeftDoubleClick" Command="{Binding MyCommand}"/>
</ComboBox.InputBindings>

我该如何绑定双击?

谢谢。

0 个答案:

没有答案