C# Class Support.Messages

Provides message showing functionality
ファイルを表示 Open project: sgrebnov/IeMobileDebugger

Public Methods

Method 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 method

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

ShowYes() public static method

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
return void

ShowYesCancel() public static method

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
return void