C# 클래스 TVSorter.Controller.ListController

Controller for lists.
상속: ControllerBase
파일 보기 프로젝트 열기: a-jackson/tvsorter 1 사용 예제들

공개 메소드들

메소드 설명
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