How does WPF sets a list item value?
问题 I have a WPF application (MVVM pattern) with databinding to strings and list of strings: public string Property { get { return _model.property; } set { if (value == _model.property) { return; } _model.property= value; base.NotifyPropertyChanged(); } } public List<string> PropertyList { get { return _model.PropertyList; } set { if (value == _model.PropertyList) { return; } _model.PropertyList= value; base.NotifyPropertyChanged(); } } My binding looks like this: <TextBox Text="{Binding Path