C# 클래스 Support.Messages

Provides message showing functionality
파일 보기 프로젝트 열기: sgrebnov/IeMobileDebugger

공개 메소드들

메소드 설명
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.

메소드 상세

ShowError() 공개 정적인 메소드

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

ShowYes() 공개 정적인 메소드

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
리턴 void

ShowYesCancel() 공개 정적인 메소드

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
리턴 void