C# Class TVSorter.Controller.ListController

Controller for lists.
Inheritance: ControllerBase
Afficher le fichier Open project: a-jackson/tvsorter Class Usage Examples

Méthodes publiques

Méthode Description
Add ( string item ) : void

Adds an item to the list.

Initialise ( IView view ) : void

Initialises the controller.

ListController ( IList list, string dialogTitle ) : System.Collections.Generic

Initializes a new instance of the ListController class.

Remove ( string item ) : void

Removes an item from the list.

Method Details

Add() public méthode

Adds an item to the list.
public Add ( string item ) : void
item string /// The item. ///
Résultat void

Initialise() public méthode

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

ListController() public méthode

Initializes a new instance of the ListController class.
public ListController ( IList list, string dialogTitle ) : System.Collections.Generic
list IList /// The list. ///
dialogTitle string /// The dialog title. ///
Résultat System.Collections.Generic

Remove() public méthode

Removes an item from the list.
public Remove ( string item ) : void
item string /// The item. ///
Résultat void