[WPF]INotifyPropertyChanged接口用法不使用INotifyPropertyChanged接口使用INotifyPropertyChanged接口
先看看如下例子,不使用INotifyPropertyChanged接口的话会存在什么问题。不使用INotifyPropertyChanged接口新建一个项目,其中新建一个类叫做Person.cs,这个类里面有3个字段分别是姓名、年龄、爱好,然后将字段封装。代码如下using System;using System.Collections.Generic;using System.Linq...