gpt4 book ai didi

c# - ComboBox 选择完成 MVVM 后强制绑定(bind)更新

转载 作者:行者123 更新时间:2023-11-30 22:01:57 24 4
gpt4 key购买 nike

我在使用可编辑组合框和更新绑定(bind)时遇到了一些问题。目前我有一个 ComboBox,它的 UpdateSourceTrigger=LostFocus 这是因为我需要等待用户完成输入,然后才能确定该值是否为新值(并因此创建一个新值)。

不幸的是,我有另一个功能需要绑定(bind)在值也发生变化时更新。也就是说,在这种情况下,LostFocus 对我没有好处。当在 ComboBox 中选择一个新值时,它不会导致 LostFocus 触发(很明显)。所以我需要找到一种方法来强制更新绑定(bind)。

我查看了 SelectionChanged 并强制更新了绑定(bind):

    <i:EventTrigger EventName="SelectionChanged">
<i:InvokeCommandAction Command="{Binding ParentConversation.ViewModel.ComboSelectionChanged}" CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type controls:StoryForgeComboBox}}}"/>
</i:EventTrigger>

然后像这样在代码后面更新绑定(bind):

be = BindingOperations.GetBindingExpression(ele, ComboBox.TextProperty);
if (be != null)
{
be.UpdateSource();
}

不幸的是,此时我不能更新绑定(bind),因为值尚未更改。请参阅此 stackoverflow 主题:ComboBox- SelectionChanged event has old value, not new value

有一个技巧,您可以使用 DropDownClosed 事件然后更新绑定(bind),这有效但如果您使用从不打开 ComboBox 的向上/向下箭头键则不起作用。连接到 KeyUp 和 KeyDown 还为时过早。绑定(bind)还不能更新。

所以我的问题是,什么时候说“嘿 Combo Box 先生,您现在可以更新您的绑定(bind)”了。

干杯。

最佳答案

您可以将 SelectionChanged 事件触发器更改为 LostFocus:

    <ComboBox
IsEditable="True"
ItemsSource="{Binding Items}"
SelectedItem="{Binding SelectedItem}"
Text="{Binding Text, UpdateSourceTrigger=PropertyChanged}">
<i:Interaction.Triggers>
<i:EventTrigger
EventName="LostFocus">
<i:InvokeCommandAction
Command="{Binding Command}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</ComboBox>
  • 当用户键入时,Text 会更新。
  • 当用户键入并且 ComboBoxItems 中找到匹配项时,SelectedItem 会更改。
  • 当用户键入时,ComboBox 未找到匹配项并且之前选择了一个项目,SelectedItem 设置为 null
  • 当用户选择一个项目时,SelectedItemText 都会更新。
  • 当用户离开 ComboBox(失去焦点)时,触发 Command
  • 当用户输入文本并打开下拉列表时,Command 被触发。
  • 编辑: 奇怪的是 Command 在获得焦点时也会被触发。

这是您想要的行为吗?

关于c# - ComboBox 选择完成 MVVM 后强制绑定(bind)更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27275376/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com