C# Class Te.StahpIt.ViewModels.BaseViewModel

The BaseViewModel makes it easy for new view models to inherit the ability to broadcast changes in state.
Inheritance: INotifyPropertyChanged
显示文件 Open project: TechnikEmpire/StahpIt-WPF

Protected Methods

Method Description
PropertyHasChanged ( string propertyName ) : void

Notify observers that a property within the ViewModel has changed.

Method Details

PropertyHasChanged() protected method

Notify observers that a property within the ViewModel has changed.
protected PropertyHasChanged ( string propertyName ) : void
propertyName string /// The property that has been modified. ///
return void