湖边的白杨树

探索是一种乐趣

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

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

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

 

posted on 2014-07-27 19:42  fdyang  阅读(2106)  评论(0)    收藏  举报