C# Class Pabloware.About.ViewModels.ViewModelBase

Base class for all ViewModel classes in the application. Provides support for property changes notification.
Inheritance: INotifyPropertyChanged
Datei anzeigen Open project: PawelStroinski/Pabloware.About.Phone

Protected Methods

Method Description
OnPropertyChanged ( string propertyName ) : void

Raises this object's PropertyChanged event.

Private Methods

Method Description
VerifyPropertyName ( string propertyName ) : void

Method Details

OnPropertyChanged() protected method

Raises this object's PropertyChanged event.
protected OnPropertyChanged ( string propertyName ) : void
propertyName string The name of the property that has a new value.
return void