首页 > 代码库 > 【2016-10-13】【坚持学习】【Day4】【WPF】【ObservableCollection<T>】
【2016-10-13】【坚持学习】【Day4】【WPF】【ObservableCollection<T>】
今天在项目中使用到这个 ObservableCollection<T> 类,作为数据源集合绑定到控件。
当数据源发生变化,会通知界面显示。
如果用List<T> ,当数据源发生变化就得要重新设置ItemsSource,效率低下。
用ObservableCollection<T> 要注意的是,T必须继承 INotifyPropertyChanged
public class Student : INotifyPropertyChanged { private string studentID; public string StudentID { get { return studentID; } set { studentID = value; NotifyPropertyChange("StudentID"); } } private string studentName; public string StudentName { get { return studentName; } set { studentName = value; NotifyPropertyChange("StudentName"); } } public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChange(string propertyName) { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } }
【2016-10-13】【坚持学习】【Day4】【WPF】【ObservableCollection<T>】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。