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

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

 

相关文章: