C# Class TVSorter.Controller.ControllerBase

Base type for controllers.
Inheritance: INotifyPropertyChanged
Datei anzeigen Open project: a-jackson/tvsorter

Public Methods

Method Description
Initialise ( IView view ) : void

Initialises the controller.

Protected Methods

Method Description
OnPropertyChanged ( string name ) : void

Raises a property changed event.

Method Details

Initialise() public abstract method

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

OnPropertyChanged() protected method

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