首页 > 代码库 > 可观察的集合---ObservableCollection<T>
可观察的集合---ObservableCollection<T>
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections.ObjectModel; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { //可观察的集合 ObservableCollection<string> oc = new ObservableCollection<string>(); oc.CollectionChanged+=oc_CollectionChanged; oc.Add("a"); oc.Add("b"); oc.Insert(2, "c"); oc.Remove("c"); foreach (var item in oc) { Console.WriteLine(item); } Console.ReadKey(); //输出: //操作:Add //被添加的索引:0 //操作:Add //被添加的索引:1 //操作:Add //被添加的索引:2 //操作:Remove //被添加的索引:2 //a //b } private static void oc_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { Console.WriteLine("操作:{0}", e.Action.ToString());//引起该事件的操作 if (e.NewItems != null)//添加 { Console.WriteLine("被添加的索引:{0}", e.NewStartingIndex.ToString()); } if (e.OldItems != null)//删除 { Console.WriteLine("被删除的索引:{0}", e.OldStartingIndex.ToString()); } } } }
可观察的集合---ObservableCollection<T>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。