C# 扩展集合ObservableCollection使集合在添加删除值变更后触发事件

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 扩展集合ObservableCollection使集合在添加删除值变更后触发事件相关的知识,希望对你有一定的参考价值。

01

概述

     ObservableCollection继承了INotifyPropertyChanged接口,在属性变更时可以通知界面,当我把ObservableCollection集合绑定到界面的DataGrid后,我希望在界面修改表格数值后,可以触发一个 事件来验证我界面设定数据的有效性,但是对于集合的添加、删除只会触发集合的get属性,值重置不会触发集合的get、set属性,这时候我们就需要扩展ObservableCollection集合.

02


集合扩展

代码如下:重写OnCollectionChanged方法,使得集合改变(增添、删除、改变)时拥有属性变更事件

using System;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using DevExpress.Xpo;


namespace Caliburn.Micro.Hello

    public class ItemsChangeObservableCollection<T> :
            System.Collections.ObjectModel.ObservableCollection<T> where T : INotifyPropertyChanged
    
        protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)

            if (e.Action == NotifyCollectionChangedAction.Add)
            
                RegisterPropertyChanged(e.NewItems);
            
            else if (e.Action == NotifyCollectionChangedAction.Remove)
            
                UnRegisterPropertyChanged(e.OldItems);
            
            else if (e.Action == NotifyCollectionChangedAction.Replace)
            
                UnRegisterPropertyChanged(e.OldItems);
                RegisterPropertyChanged(e.NewItems);
            


            base.OnCollectionChanged(e);
        


        protected override void ClearItems()

            UnRegisterPropertyChanged(this);
            base.ClearItems();
        


        private void RegisterPropertyChanged(IList items)

            foreach (INotifyPropertyChanged item in items)
            
                if (item != null)
                
                    item.PropertyChanged += new PropertyChangedEventHandler(item_PropertyChanged);
                
            
        


        private void UnRegisterPropertyChanged(IList items)

            foreach (INotifyPropertyChanged item in items)
            
                if (item != null)
                
                    item.PropertyChanged -= new PropertyChangedEventHandler(item_PropertyChanged);
                
            
        


        private void item_PropertyChanged(object sender, PropertyChangedEventArgs e)

            //launch an event Reset with name of property changed
            base.OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
        
    

03


事件订阅

可以用如下方法订阅事件:

this.StudentList.CollectionChanged += StudentList_OnCollectionChanged;
或
StudentList.CollectionChanged += new NotifyCollectionChangedEventHandler(StudentList_OnCollectionChanged);

事件方法:

public void StudentList_OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
        
            MessageBox.Show("当前触发的事件是:"+ e.Action.ToString());
        

集合定义:

private ItemsChangeObservableCollection<Students> studentList;
        public ItemsChangeObservableCollection<Students> StudentList
        
            get
            
                return studentList;
            
            set
            
                studentList = value;
            
        

04


效果演示

源码下载

网盘下载链接:https://pan.baidu.com/s/1TD2BT5hiT-z-_7Z2Bn3PVQ

提取码:添加小编微信获取

技术群:添加小编微信并备注进群

小编微信:mm1552923   

公众号:dotNet编程大全      

以上是关于C# 扩展集合ObservableCollection使集合在添加删除值变更后触发事件的主要内容,如果未能解决你的问题,请参考以下文章

C#最佳工具集合:IDE分析自动化工具等

0914 c#的遍历查询-属性扩展

转载C#使用ToList()将数组快速转换为List集合

C# 会可能需要的扩展

C# 知识体系构建| | C# 3.0 上

C#新特性