WPF 修改数据后更新UI

Posted 冣綮風

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 修改数据后更新UI相关的知识,希望对你有一定的参考价值。

ObservableCollection<T> 只有项添加或删除才会更新UI

要想属性发生变动后立刻更新到UI,必须继承 INotifyPropertyChanged 接口,示例如下
public class SurfaceDetail: INotifyPropertyChanged
   {
       //不更新到界面的属性
       public string name { get; set; }
 
      //以下是更新到界面的属性 
 
       private string _color;
 
       public string color
       {
           get
           {
               return _color;
           }
 
           set
           {
               _color = value;
               OnPropertyChanged("color");
           }
       } 
 
       public event PropertyChangedEventHandler PropertyChanged;
       private void OnPropertyChanged(string propertyName)
       {
           PropertyChangedEventHandler handler = this.PropertyChanged;
           if (handler != null)
           {
               handler(this, new PropertyChangedEventArgs(propertyName));
           }
       }
   }

  

以上是关于WPF 修改数据后更新UI的主要内容,如果未能解决你的问题,请参考以下文章

WPF属性绑定实现双向变化

F# & WPF:基本的 UI 更新

WPF DataGrid - 如何暂停数据绑定中的 UI 更新并稍后进行批量更新

wpf 动态更新 UI 而不会冻结 UI

WPF:在后台不断更新 UI

WPF Dispatcher.BeginInvoke子线程更新UI