双向绑定和选择器

发布于 2024-10-06 04:39:41 字数 553 浏览 7 评论 0原文

设置:

  1. 有一个绑定到 ObservableCollection 的 ComboBox。
  2. UI 中有一个 Car 对象。它的 Color 属性绑定到 ComboBox 的 SelectedItem(绑定:
  3. 颜色列表可以在数据库中更改,并且应该是有时会刷新。

问题:

刷新 ObservableCollection 时(== 这意味着它在其 CollectionChanged 事件中发送 Reset)汽车的颜色属性设置为集合中的第一个项目 => 刷新列表 => ComboBox 重新加载集合并将其选定的项目设置为集合中的第一个项目 => 汽车的颜色更改为相同的item (因为双向绑定)=> 问题

简而言之 - 如何避免这种情况?如何在重新加载时立即从绑定中获取所选项目?

Setup:

  1. There is a ComboBox that is bound to a ObservableCollection.
  2. There is a Car object in the UI. Its Color property is bound to the ComboBox's SelectedItem (the binding: <ComboBox SelectedItem="{Binding Car.Color}".../>
  3. The color list can change in the database and should be refreshed sometimes.

The problem:

When the ObservableCollection<MyColor> is refreshed (== this means that it sends a Reset inside its CollectionChanged event) the Car's Color property is set to the first item in the collection => the list is refreshed => ComboBox reloads the collection and sets its selected item to the first one in the collection => Car's color is changed to the same first item (because of the two-way binding) => problem

So in short - how can I avoid this? How can I tell on reload to take the selected item right away from the binding?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的旅程 2024-10-13 04:39:41

您可以在集合更改时删除绑定:

var binding = comboBox.GetBindingExpression(ComboBox.SelectedItemProperty).ParentBinding;
comboBox.ClearValue(ComboBox.SelectedItemProperty);

ChangingData.Clear();
// <Rebuild>

comboBox.SetBinding(ComboBox.SelectedItemProperty, binding);

You can remove the binding while the collection changes:

var binding = comboBox.GetBindingExpression(ComboBox.SelectedItemProperty).ParentBinding;
comboBox.ClearValue(ComboBox.SelectedItemProperty);

ChangingData.Clear();
// <Rebuild>

comboBox.SetBinding(ComboBox.SelectedItemProperty, binding);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文