C# Class ACAT.Extensions.Default.UI.Dialogs.AboutBoxForm

Inheritance: System.Windows.Forms.Form, IDialogPanel, IExtension
Show file Open project: brlima94/acat-localization

Public Methods

Method Description
AboutBoxForm ( string titleText ) : System

Initializes a new instance of the class.

GetInvoker ( ) : ACAT.Lib.Core.Extensions.ExtensionInvoker

Returns the extension invoker object

OnButtonActuated ( ACAT.Lib.Core.WidgetManagement.Widget widget ) : void

Triggered when a widget is actuated.

OnPause ( ) : void

Pause the scanner

OnResume ( ) : void

Resume paused scanner

OnRunCommand ( string command, bool &handled ) : void

Handles the command. There is only the OK button that we have to handle

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnFormClosing ( FormClosingEventArgs e ) : void

Release resources

Private Methods

Method Description
Form_Closing ( object sender, FormClosingEventArgs e ) : void

Form is closing. Release resources

Form_Load ( object sender, EventArgs e ) : void

Form loader handler

InitializeComponent ( ) : void

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

updateUserProfileInfo ( ) : void

Updates user/profile info on the form

Method Details

AboutBoxForm() public method

Initializes a new instance of the class.
public AboutBoxForm ( string titleText ) : System
titleText string
return System

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

GetInvoker() public method

Returns the extension invoker object
public GetInvoker ( ) : ACAT.Lib.Core.Extensions.ExtensionInvoker
return ACAT.Lib.Core.Extensions.ExtensionInvoker

OnButtonActuated() public method

Triggered when a widget is actuated.
public OnButtonActuated ( ACAT.Lib.Core.WidgetManagement.Widget widget ) : void
widget ACAT.Lib.Core.WidgetManagement.Widget Which one triggered?
return void

OnFormClosing() protected method

Release resources
protected OnFormClosing ( FormClosingEventArgs e ) : void
e System.Windows.Forms.FormClosingEventArgs closing argument
return void

OnPause() public method

Pause the scanner
public OnPause ( ) : void
return void

OnResume() public method

Resume paused scanner
public OnResume ( ) : void
return void

OnRunCommand() public method

Handles the command. There is only the OK button that we have to handle
public OnRunCommand ( string command, bool &handled ) : void
command string command to execute
handled bool was it handled?
return void