C# Class TVSorter.View.ShowSearchDialog

Dialog for searching for a show.
Inheritance: System.Windows.Forms.Form, IView
Show file Open project: a-jackson/tvsorter Class Usage Examples

Public Methods

Method Description
ShowSearchDialog ( ShowSearchController controller ) : System

Initializes a new instance of the ShowSearchDialog class.

StartTaskProgress ( IProgressTask task, string taskName ) : void

Starts the progress indication for the specified Project Task.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

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

Handles the Close button being clicked.

InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

ListResultsDoubleClick ( object sender, EventArgs e ) : void

Handles the list of results being double clicked.

PropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

Handles a property of the controller changing.

SearchButtonClick ( object sender, EventArgs e ) : void

Handles the Search button being clicked.

SelectButtonClick ( object sender, EventArgs e ) : void

Handles the Select button being clicked.

ShowSearchDialogLoad ( object sender, EventArgs e ) : void

Handles the dialog loading.

Method Details

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool /// true if managed resources should be disposed; otherwise, false. ///
return void

ShowSearchDialog() public method

Initializes a new instance of the ShowSearchDialog class.
public ShowSearchDialog ( ShowSearchController controller ) : System
controller TVSorter.Controller.ShowSearchController /// The 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