C# Класс Support.Messages

Provides message showing functionality
Показать файл Открыть проект

Открытые методы

Метод Описание
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