C# Class Support.Messages

Provides message showing functionality
Afficher le fichier Open project: sgrebnov/IeMobileDebugger

Méthodes publiques

Méthode Description
ShowError ( string text ) : void

Displays error message box that contains the specified text.

ShowYes ( string text, System.Action onOk ) : void

Displays message box that contains the specified text.

ShowYesCancel ( string text, System.Action onOk, System.Action onCancel ) : void

Displays message box that contains the specified text.

Method Details

ShowError() public static méthode

Displays error message box that contains the specified text.
public static ShowError ( string text ) : void
text string Text to show.
Résultat void

ShowYes() public static méthode

Displays message box that contains the specified text.
public static ShowYes ( string text, System.Action onOk ) : void
text string Text to show.
onOk System.Action
Résultat void

ShowYesCancel() public static méthode

Displays message box that contains the specified text.
public static ShowYesCancel ( string text, System.Action onOk, System.Action onCancel ) : void
text string Text to show.
onOk System.Action
onCancel System.Action
Résultat void