gpt4 book ai didi

c# - 如何获取 ObservableCollection 的变化

转载 作者:可可西里 更新时间:2023-11-01 08:34:52 26 4
gpt4 key购买 nike

public ObservableCollection<IndividualEntityCsidClidDetail> IncludedMembers { get; set; }

假设我有一个对 IncludedMembers 的引用,我希望在添加/删除/编辑集合项时发生一个事件。

最佳答案

处理 CollectionChanged 事件

//注册事件以便每次当集合发生变化时调用CollectionChangedMethod方法

    yourCollection.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler 
(CollectionChangedMethod);

像这样创建一个方法

private void CollectionChangedMethod(object sender, NotifyCollectionChangedEventArgs e)
{
//different kind of changes that may have occurred in collection
if(e.Action == NotifyCollectionChangedAction.Add)
{
//your code
}
if (e.Action == NotifyCollectionChangedAction.Replace)
{
//your code
}
if (e.Action == NotifyCollectionChangedAction.Remove)
{
//your code
}
if (e.Action == NotifyCollectionChangedAction.Move)
{
//your code
}
}

关于c# - 如何获取 ObservableCollection 的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6007765/

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