码迷,mamicode.com
首页 > 其他好文 > 详细

属性更改通知(INotifyPropertyChanged)——针对ObservableCollection

时间:2017-12-31 20:59:00      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:turn   file   示例   eve   view   pac   notify   post   property   

问题

在开发webform中,wpf中的ObservableCollection<T>,MSDN中说,在添加项,移除项时此集合通知控件,我们知道对一个集合的操作是CURD
但是恰恰没有Update的时候提供集合通知,也就是说当我Update的时候,虽然"集合内容“已被修改,但是"控件“却没有实现同步更新
INotifyPropertyChanged提供了解决方案。

方案1:INotifyPropertyChanged

传统方式,实现接口INotifyPropertyChanged

public class StudentByINotifyPropertyChanged: INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;
    //实现INotifyPropertyChanged接口
    private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }

    private string sex;
    private string name;

    public string Sex
    {
        get { return sex; }
        set
        {
            sex = value;
            NotifyPropertyChanged("Sex");
        }
    }

    public string Name
    {
        get { return name; }
        set
        {
            name = value;
            NotifyPropertyChanged("Name");
        }
    }
}

示例代码

https://github.com/zLulus/NotePractice/tree/dev3/WPF/WpfDemo/PropertyChanged

方案2:采用框架实现好的

mvvmlight的ViewModelBase已实现该方法,使用如下

 
技术分享图片

 

List与ObservableCollection对比

List可检查更改,不能检查增加、删除
ObservableCollection检查增加、删除,不能检查更改

属性更改通知(INotifyPropertyChanged)——针对ObservableCollection

标签:turn   file   示例   eve   view   pac   notify   post   property   

原文地址:https://www.cnblogs.com/Lulus/p/8158367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!