C# Class TVSorter.View.ListDialog

A dialog that shows a list of strings and allows adding and removing.
Inheritance: System.Windows.Forms.Form, IView
Show file Open project: a-jackson/tvsorter Class Usage Examples

Public Methods

Method Description
ListDialog ( ListController listController ) : System

Initializes a new instance of the ListDialog class.

StartTaskProgress ( IProgressTask task, string taskName ) : void

Starts the progress indication for the specified Project Task.

Private Methods

Method Description
AddButtonClick ( object sender, EventArgs e ) : void

Handles Add button being clicked.

CloseButtonClick ( object sender, EventArgs e ) : void

Handles the close button being clicked.

ListDialogLoad ( object sender, EventArgs e ) : void

Handles the List dialog loading.

PropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

Handles the event for a property changing in the controller.

RemoveButtonClick ( object sender, EventArgs e ) : void

Handles the Remove button being clicked.

SaveButtonClick ( object sender, EventArgs e ) : void

Handles the Save button being clicked.

Method Details

ListDialog() public method

Initializes a new instance of the ListDialog class.
public ListDialog ( ListController listController ) : System
listController TVSorter.Controller.ListController /// The list controller. ///
return System

StartTaskProgress() public method

Starts the progress indication for the specified Project Task.
public StartTaskProgress ( IProgressTask task, string taskName ) : void
task IProgressTask /// The task. ///
taskName string /// The task name. ///
return void