C# Class LibraryBase.Wpf.ViewModel.BindableBase

Base class for all ViewModel classes in the application. It provides support for property change notifications and has a DisplayName property. This class is abstract.
Inheritance: INotifyPropertyChanged, IDisposable
Datei anzeigen Open project: Zicore/TradingPostNotifier

Public Methods

Method Description
Dispose ( ) : void

Invoked when this object is being removed from the application and will be subject to garbage collection.

Protected Methods

Method Description
BindableBase ( ) : System
OnDispose ( ) : void

Child classes can override this method to perform clean-up logic, such as removing event handlers.

OnPropertyChanged ( string propertyName ) : void

Raises this object's PropertyChanged event.

Private Methods

Method Description
VerifyPropertyName ( string propertyName ) : void

Method Details

BindableBase() protected method

protected BindableBase ( ) : System
return System

Dispose() public method

Invoked when this object is being removed from the application and will be subject to garbage collection.
public Dispose ( ) : void
return void

OnDispose() protected method

Child classes can override this method to perform clean-up logic, such as removing event handlers.
protected OnDispose ( ) : void
return void

OnPropertyChanged() protected method

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