C# Class GSF.Windows.Forms.AboutDialog

Mostrar archivo Open project: GridProtectionAlliance/gsf Class Usage Examples

Public Methods

Method Description
AboutDialog ( ) : System

Initializes a new instance of the AboutDialog class.

HideApplicationTab ( ) : void

Conceals the tab where application information is displayed.

HideAssembliesTab ( ) : void

Conceals the tab where assemblies and their information is displayed.

HideDisclaimerTab ( ) : void

Conceals the tab where disclaimer text is displayed.

SetCompanyDisclaimer ( Stream disclaimerStream ) : void

Sets the disclaimer text that is to be displayed in the About Dialog.

SetCompanyDisclaimer ( string disclaimerFile ) : void

Sets the disclaimer text that is to be displayed in the About Dialog.

SetCompanyLogo ( Stream logoStream ) : void

Sets the logo that is to be displayed in the About Dialog.

SetCompanyLogo ( string logoFile ) : void

Sets the logo that is to be displayed in the About Dialog.

SetCompanyUrl ( string url ) : void

Sets the URL that will be opened when the logo is clicked.

Private Methods

Method Description
AddListViewItem ( ListView listView, string text ) : void
ButtonOK_Click ( object sender, EventArgs e ) : void
ComboBoxAssemblies_SelectedIndexChanged ( object sender, EventArgs e ) : void
PictureBoxLogo_Click ( object sender, EventArgs e ) : void
RichTextBoxDisclaimer_LinkClicked ( object sender, LinkClickedEventArgs e ) : void
_AboutDialog_Load ( object sender, EventArgs e ) : void

Method Details

AboutDialog() public method

Initializes a new instance of the AboutDialog class.
public AboutDialog ( ) : System
return System

HideApplicationTab() public method

Conceals the tab where application information is displayed.
public HideApplicationTab ( ) : void
return void

HideAssembliesTab() public method

Conceals the tab where assemblies and their information is displayed.
public HideAssembliesTab ( ) : void
return void

HideDisclaimerTab() public method

Conceals the tab where disclaimer text is displayed.
public HideDisclaimerTab ( ) : void
return void

SetCompanyDisclaimer() public method

Sets the disclaimer text that is to be displayed in the About Dialog.
public SetCompanyDisclaimer ( Stream disclaimerStream ) : void
disclaimerStream Stream System.IO.Stream of the disclaimer text.
return void

SetCompanyDisclaimer() public method

Sets the disclaimer text that is to be displayed in the About Dialog.
public SetCompanyDisclaimer ( string disclaimerFile ) : void
disclaimerFile string Location of the file that contains the disclaimer text.
return void

SetCompanyLogo() public method

Sets the logo that is to be displayed in the About Dialog.
public SetCompanyLogo ( Stream logoStream ) : void
logoStream Stream System.IO.Stream of the logo.
return void

SetCompanyLogo() public method

Sets the logo that is to be displayed in the About Dialog.
public SetCompanyLogo ( string logoFile ) : void
logoFile string Location of the logo file.
return void

SetCompanyUrl() public method

Sets the URL that will be opened when the logo is clicked.
public SetCompanyUrl ( string url ) : void
url string URL of the company's home page.
return void