C# Class MetroIde.Dialogs.MetroInputBox

显示文件 Open project: ChadSki/Quickbeam

Public Methods

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

Method Details

Show() public static method

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.
return string

Show() public static method

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.
return string

Show() public static method

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.
return string

Show() public static method

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.
return string