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

Inheritance: System.Windows.Forms.Form, IDialogPanel, IExtension
Afficher le fichier Open project: brlima94/acat-localization

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnFormClosing ( FormClosingEventArgs e ) : void

Release resources

Private Methods

Méthode 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 méthode

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

Dispose() protected méthode

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

GetInvoker() public méthode

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

OnButtonActuated() public méthode

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

OnFormClosing() protected méthode

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

OnPause() public méthode

Pause the scanner
public OnPause ( ) : void
Résultat void

OnResume() public méthode

Resume paused scanner
public OnResume ( ) : void
Résultat void

OnRunCommand() public méthode

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?
Résultat void