C# Класс MetroIde.Dialogs.MetroInputBox

Показать файл Открыть проект

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

Метод Описание
Show ( string title, string message ) : string

Show a Metro Input Message Box

Show ( string title, string message, string defaultText ) : string

Show a Metro Input Message Box

Show ( string title, string message, string defaultText, string placeholder ) : string

Show a Metro Input Message Box

Show ( string title, string message, string defaultText, string placeholder, string regexMatch ) : string

Show a Metro Input Message Box

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

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

Show a Metro Input Message Box
public static Show ( string title, string message ) : string
title string The title of the Message Box.
message string The message to display inside the Message Box.
Результат string

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

Show a Metro Input Message Box
public static Show ( string title, string message, string defaultText ) : string
title string The title of the Message Box.
message string The message to display inside the Message Box.
defaultText string The default text to show in the input box.
Результат string

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

Show a Metro Input Message Box
public static Show ( string title, string message, string defaultText, string placeholder ) : string
title string The title of the Message Box.
message string The message to display inside the Message Box.
defaultText string The default text to show in the input box.
placeholder string The placeholder text to put in the Input Box.
Результат string

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

Show a Metro Input Message Box
public static Show ( string title, string message, string defaultText, string placeholder, string regexMatch ) : string
title string The title of the Message Box.
message string The message to display inside the Message Box.
defaultText string The default text to show in the input box.
placeholder string The placeholder text to put in the Input Box.
regexMatch string The regex string to use to validate user input.
Результат string