这里我实现了INotifyPropertyChanged
Public Event PropertyChanged As PropertyChangedEventHandler Implements INotifyPropertyChanged.PropertyChanged
Private Function RaisePropertyChanged() As Action(Of PropertyChangedEventArgs)
Return Function(args) IIf(PropertyChanged.Invoke, Me, args)
End Function