基本上我有一个文本框,当未选中复选框并且选中复选框时,我希望文本框对我写的 KeyBinding 做出反应。
<TextBox AcceptsReturn="{Binding IsChecked, ElementName=EnterCheckbox, Converter={StaticResource InvertBooleanConverter}}" >
<TextBox.InputBindings>
<KeyBinding Key="Enter" Command="{Binding CmdEnterPressed}"/>
</TextBox.InputBindings>
</TextBox >
现在在任何情况下,尽管事实上TextBox.AcceptsReturn
当我按下 KeyBinding 时设置为 True,[Return]
但我不想触发它,而是转到下一行 TB。