C# Class ComponentFactory.Krypton.Toolkit.KryptonTaskDialog

Inheritance: System.ComponentModel.Component, INotifyPropertyChanged
Afficher le fichier Open project: ComponentFactory/Krypton Class Usage Examples

Private Properties

Свойство Type Description
RaiseFooterHyperlinkClicked void
ResetTag void
ShouldSerializeTag bool

Méthodes publiques

Méthode Description
KryptonTaskDialog ( ) : System

Initialize a new instance of the KryptonTaskDialog class.

Show ( string windowTitle, string mainInstruction, string content, MessageBoxIcon icon, TaskDialogButtons commonButtons ) : DialogResult

Show a task dialog using the specified values as content.

ShowDialog ( ) : DialogResult

Shows the task dialog as a modal dialog box with the currently active window set as its owner.

ShowDialog ( IWin32Window owner ) : DialogResult

Shows the form as a modal dialog box with the specified owner.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnFooterHyperlinkClicked ( EventArgs e ) : void

Raises the PropertyFooterHyperlinkClickedChanged event.

OnPropertyChanged ( PropertyChangedEventArgs e ) : void

Raises the PropertyChanged event.

Private Methods

Méthode Description
RaiseFooterHyperlinkClicked ( ) : void
ResetTag ( ) : void
ShouldSerializeTag ( ) : bool

Method Details

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

KryptonTaskDialog() public méthode

Initialize a new instance of the KryptonTaskDialog class.
public KryptonTaskDialog ( ) : System
Résultat System

OnFooterHyperlinkClicked() protected méthode

Raises the PropertyFooterHyperlinkClickedChanged event.
protected OnFooterHyperlinkClicked ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
Résultat void

OnPropertyChanged() protected méthode

Raises the PropertyChanged event.
protected OnPropertyChanged ( PropertyChangedEventArgs e ) : void
e System.ComponentModel.PropertyChangedEventArgs A PropertyChangedEventArgs containing the event data.
Résultat void

Show() public static méthode

Show a task dialog using the specified values as content.
public static Show ( string windowTitle, string mainInstruction, string content, MessageBoxIcon icon, TaskDialogButtons commonButtons ) : DialogResult
windowTitle string Caption of the window.
mainInstruction string Principal text.
content string Extra text.
icon MessageBoxIcon Predefined icon.
commonButtons TaskDialogButtons Common buttons.
Résultat DialogResult

ShowDialog() public méthode

Shows the task dialog as a modal dialog box with the currently active window set as its owner.
public ShowDialog ( ) : DialogResult
Résultat DialogResult

ShowDialog() public méthode

Shows the form as a modal dialog box with the specified owner.
public ShowDialog ( IWin32Window owner ) : DialogResult
owner IWin32Window Any object that implements IWin32Window that represents the top-level window that will own the modal dialog box.
Résultat DialogResult