C# Class TVSorter.Controller.ControllerBase

Base type for controllers.
Inheritance: INotifyPropertyChanged
Afficher le fichier Open project: a-jackson/tvsorter

Méthodes publiques

Méthode Description
Initialise ( IView view ) : void

Initialises the controller.

Méthodes protégées

Méthode Description
OnPropertyChanged ( string name ) : void

Raises a property changed event.

Method Details

Initialise() public abstract méthode

Initialises the controller.
public abstract Initialise ( IView view ) : void
view IView /// The view the controller is for. ///
Résultat void

OnPropertyChanged() protected méthode

Raises a property changed event.
protected OnPropertyChanged ( string name ) : void
name string /// The name of the property being changed. ///
Résultat void