C# Класс TVSorter.Controller.ListController

Controller for lists.
Наследование: ControllerBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Add() публичный Метод

Adds an item to the list.
public Add ( string item ) : void
item string /// The item. ///
Результат void

Initialise() публичный Метод

Initialises the controller.
public Initialise ( IView view ) : void
view IView /// The view the controller is for. ///
Результат void

ListController() публичный Метод

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. ///
Результат System.Collections.Generic

Remove() публичный Метод

Removes an item from the list.
public Remove ( string item ) : void
item string /// The item. ///
Результат void