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

(WPF) MVVM: DataGrid Binding

时间:2014-07-27 23:01:19      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   cti   div   log   a   

Binding到DataGrid的时候,需要用到ObservableCollection.

        public ObservableCollection<Customer> Customers
        {
            get
            {
                return this.customers;
            }
            set
            {
                this.customers = value;
                base.OnPropertyChanged("Customers");
            }
        }

 

(WPF) MVVM: DataGrid Binding,布布扣,bubuko.com

(WPF) MVVM: DataGrid Binding

标签:style   blog   color   io   cti   div   log   a   

原文地址:http://www.cnblogs.com/fdyang/p/3871808.html

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