gpt4 book ai didi

c# - WPF DataGrid ItemsSource 绑定(bind)到 ObservableCollection 不会更新超出第一个设置?

转载 作者:太空宇宙 更新时间:2023-11-03 18:17:34 25 4
gpt4 key购买 nike

我通过 DataGrid 的“ItemSource”将 WPF 应用程序 DataGrid 绑定(bind)到 ObservableCollection。最初 DataGrid 确实提供了标题和值,但是对 ObservableCollection 所做的升级没有反射(reflect)出来? (即当我以编程方式返回并增加“Total”值时)我正在使用的 ObservableCollection 如下。

任何想法为什么以及如何让网格正确动态更新/绑定(bind)?

public class SummaryItem
{
public string ProcessName { get; set; }
public long Total { get; set; }
public long Average { get; set; }

public static SummaryItem ObservableCollectionSearch(ObservableCollection<SummaryItem> oc, string procName)
{
foreach (var summaryItem in oc)
{
if (summaryItem.ProcessName == procName) return summaryItem;
}
return null;
}
}

编辑 - 或者一个附加问题是在这种情况下 DataGrid 是否不是我应该用来可视化有效内存表的控件?也就是说,SummaryItem 的 observableCollection 实际上是内存表。

最佳答案

如果我没看错,您正在使用 ObservableCollection。如果您将项目添加到 ObservableCollection,这些更改应始终由 WPF 反射(reflect),但如果您编辑项目的属性(即更改 SummaryItem 的“Total”值),这不会更改 ObservableCollection,而是更改 SummaryItem。

要实现所需的行为,您的 SummaryItems 必须实现 INotifyPropertyChanged 接口(interface)以在属性更改时“通知”WPF:

// implement the interface
public event PropertyChangedEventHandler PropertyChanged;

// use this for every property
private long _Total;
public long Total {
get {
return _Total;
}
set {
_Total = value;
if(PropertyChanged != null) {
// notifies wpf about the property change
PropertyChanged(this, new PropertyChangedEventArgs("Total"));
}
}
}

关于c# - WPF DataGrid ItemsSource 绑定(bind)到 ObservableCollection 不会更新超出第一个设置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3818513/

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