C# Class TVSorter.Controller.ListController

Controller for lists.
Inheritance: ControllerBase
Mostra file Open project: a-jackson/tvsorter Class Usage Examples

Public Methods

Method 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 method

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

Initialise() public method

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

ListController() public method

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. ///
return System.Collections.Generic

Remove() public method

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