C# 클래스 ComponentFactory.Krypton.Toolkit.KryptonInputBox

상속: KryptonForm
파일 보기 프로젝트 열기: ComponentFactory/Krypton 1 사용 예제들

Private Properties

프로퍼티 타입 설명
InitializeComponent void
InternalShow string
KryptonInputBox System
UpdateButtonSizing System.Drawing.Size
UpdateButtons void
UpdatePromptSizing System.Drawing.Size
UpdateResponseSizing System.Drawing.Size
UpdateSizing void
UpdateText void
button_keyDown void

공개 메소드들

메소드 설명
Show ( IWin32Window owner, string prompt ) : string

Displays an input box in front of the specified object and with the provided prompt.

Show ( IWin32Window owner, string prompt, string caption ) : string

Displays an input box in front of the specified object and with the provided prompt and caption.

Show ( IWin32Window owner, string prompt, string caption, string defaultResponse ) : string

DDisplays an input box in front of the specified object and with the provided prompt and caption and defaulted response string.

Show ( string prompt ) : string

Displays an input box with the provided prompt.

Show ( string prompt, string caption ) : string

Displays an input box with provided prompt and caption.

Show ( string prompt, string caption, string defaultResponse ) : string

Displays an input box with provided prompt and caption and defaulted response string.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Clean up any resources being used.

비공개 메소드들

메소드 설명
InitializeComponent ( ) : void
InternalShow ( IWin32Window owner, string prompt, string caption, string defaultResponse ) : string
KryptonInputBox ( string prompt, string caption, string defaultResposne ) : System
UpdateButtonSizing ( ) : Size
UpdateButtons ( ) : void
UpdatePromptSizing ( ) : Size
UpdateResponseSizing ( ) : Size
UpdateSizing ( ) : void
UpdateText ( ) : void
button_keyDown ( object sender, KeyEventArgs e ) : void

메소드 상세

Dispose() 보호된 메소드

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
리턴 void

Show() 공개 정적인 메소드

Displays an input box in front of the specified object and with the provided prompt.
public static Show ( IWin32Window owner, string prompt ) : string
owner IWin32Window Owner of the modal dialog box.
prompt string The text to display as an input prompt.
리턴 string

Show() 공개 정적인 메소드

Displays an input box in front of the specified object and with the provided prompt and caption.
public static Show ( IWin32Window owner, string prompt, string caption ) : string
owner IWin32Window Owner of the modal dialog box.
prompt string The text to display as an input prompt.
caption string The text to display in the title bar of the input box.
리턴 string

Show() 공개 정적인 메소드

DDisplays an input box in front of the specified object and with the provided prompt and caption and defaulted response string.
public static Show ( IWin32Window owner, string prompt, string caption, string defaultResponse ) : string
owner IWin32Window Owner of the modal dialog box.
prompt string The text to display as an input prompt.
caption string The text to display in the title bar of the input box.
defaultResponse string Default response text..
리턴 string

Show() 공개 정적인 메소드

Displays an input box with the provided prompt.
public static Show ( string prompt ) : string
prompt string The text to display as an input prompt.
리턴 string

Show() 공개 정적인 메소드

Displays an input box with provided prompt and caption.
public static Show ( string prompt, string caption ) : string
prompt string The text to display as an input prompt.
caption string The text to display in the title bar of the input box.
리턴 string

Show() 공개 정적인 메소드

Displays an input box with provided prompt and caption and defaulted response string.
public static Show ( string prompt, string caption, string defaultResponse ) : string
prompt string The text to display as an input prompt.
caption string The text to display in the title bar of the input box.
defaultResponse string Default response text..
리턴 string