Méthode | 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
|
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. |
Résultat | string |
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. |
Résultat | string |
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. |
Résultat | string |
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. |
Résultat | string |