C# Класс Cimbalino.Phone.Toolkit.Services.InputBoxService

Represents an implementation of the IInputBoxService.
Наследование: IInputBoxService
Показать файл Открыть проект

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

Метод Описание
Show ( string text, Action textInputed ) : void

Shows the specified text and awaits for the user to reply.

Show ( string text, string caption, Action textInputed ) : void

Shows the specified text and caption and awaits for the user to reply.

Show ( string text, string caption, bool usePasswordMode, Action textInputed ) : void

Shows the specified text and caption and awaits for the user to reply.

Show ( string text, string caption, string defaultText, Action textInputed ) : void

Shows the specified text, caption and default input text, and awaits for the user to reply.

Show ( string text, string caption, string defaultText, bool usePasswordMode, Action textInputed ) : void

Shows the specified text, caption and default input text, and awaits for the user to reply.

ShowAsync ( string text ) : Task

Shows the specified text and awaits for the user to reply.

ShowAsync ( string text, string caption ) : Task

Shows the specified text and caption and awaits for the user to reply.

ShowAsync ( string text, string caption, bool usePasswordMode ) : Task

Shows the specified text and caption and awaits for the user to reply.

ShowAsync ( string text, string caption, string defaultText ) : Task

Shows the specified text, caption and default input text, and awaits for the user to reply.

ShowAsync ( string text, string caption, string defaultText, bool usePasswordMode ) : Task

Shows the specified text, caption and default input text, and awaits for the user to reply.

Описание методов

Show() публичный Метод

Shows the specified text and awaits for the user to reply.
public Show ( string text, Action textInputed ) : void
text string The message to display.
textInputed Action The to be called once the operation is finished.
Результат void

Show() публичный Метод

Shows the specified text and caption and awaits for the user to reply.
public Show ( string text, string caption, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
textInputed Action The to be called once the operation is finished.
Результат void

Show() публичный Метод

Shows the specified text and caption and awaits for the user to reply.
public Show ( string text, string caption, bool usePasswordMode, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
usePasswordMode bool true if password mode is enabled; otherwise, false.
textInputed Action The to be called once the operation is finished.
Результат void

Show() публичный Метод

Shows the specified text, caption and default input text, and awaits for the user to reply.
public Show ( string text, string caption, string defaultText, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
textInputed Action The to be called once the operation is finished.
Результат void

Show() публичный Метод

Shows the specified text, caption and default input text, and awaits for the user to reply.
public Show ( string text, string caption, string defaultText, bool usePasswordMode, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
usePasswordMode bool true if password mode is enabled; otherwise, false.
textInputed Action The to be called once the operation is finished.
Результат void

ShowAsync() публичный Метод

Shows the specified text and awaits for the user to reply.
public ShowAsync ( string text ) : Task
text string The message to display.
Результат Task

ShowAsync() публичный Метод

Shows the specified text and caption and awaits for the user to reply.
public ShowAsync ( string text, string caption ) : Task
text string The message to display.
caption string The title of the input box.
Результат Task

ShowAsync() публичный Метод

Shows the specified text and caption and awaits for the user to reply.
public ShowAsync ( string text, string caption, bool usePasswordMode ) : Task
text string The message to display.
caption string The title of the input box.
usePasswordMode bool true if password mode is enabled; otherwise, false.
Результат Task

ShowAsync() публичный Метод

Shows the specified text, caption and default input text, and awaits for the user to reply.
public ShowAsync ( string text, string caption, string defaultText ) : Task
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
Результат Task

ShowAsync() публичный Метод

Shows the specified text, caption and default input text, and awaits for the user to reply.
public ShowAsync ( string text, string caption, string defaultText, bool usePasswordMode ) : Task
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
usePasswordMode bool true if password mode is enabled; otherwise, false.
Результат Task