C# 클래스 MetroIde.Dialogs.MetroInputBox

파일 보기 프로젝트 열기: ChadSki/Quickbeam

공개 메소드들

메소드 설명
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