C# 클래스 DroidExplorer.ControlDelegateExtensions

파일 보기 프로젝트 열기: camalot/droidexplorer

공개 메소드들

메소드 설명
AsyncShow ( this form ) : void

Shows the ext.

AsyncShow ( this form, IWin32Window owner ) : void

Shows the ext.

AsyncShowDialog ( this form ) : DialogResult

Shows the ext.

AsyncShowDialog ( this form, IWin32Window owner ) : DialogResult

Shows the ext.

CloseExt ( this form ) : void

Closes the ext.

GetChecked ( this cb ) : bool

Gets the checked.

GetText ( this ctrl ) : string
GetValue ( this pb ) : int
HideExt ( this form ) : void

Hides the ext.

IncrementExt ( this pb, int increment ) : void

increments the progress bar

SetChecked ( this cb, bool @checked ) : void

Sets the checked.

SetMaximum ( this pb, int max ) : void

Sets the progress bar maximum.

SetMinimum ( this pb, int min ) : void

Sets the progress bar minimum.

SetText ( this ctrl, string text ) : void
SetValue ( this pb, int value ) : void

Sets the progress bar value.

비공개 메소드들

메소드 설명
GetCheckedInternal ( CheckBox cb ) : bool

Gets the checked internal.

GetTextInternal ( Control ctrl ) : string

Gets the text internal.

InternalGetProgressBarValue ( System.Windows.Forms.ProgressBar pb ) : int
InternalSetProgressBarMaximum ( System.Windows.Forms.ProgressBar pb, int max ) : void
InternalSetProgressBarMinimum ( System.Windows.Forms.ProgressBar pb, int min ) : void
InternalSetProgressBarValue ( System.Windows.Forms.ProgressBar pb, int value ) : void
SetCheckedInternal ( CheckBox cb, bool @checked ) : void

Sets the checked internal.

SetTextInternal ( Control ctrl, string text ) : void

Sets the text internal.

메소드 상세

AsyncShow() 공개 정적인 메소드

Shows the ext.
public static AsyncShow ( this form ) : void
form this The Form.
리턴 void

AsyncShow() 공개 정적인 메소드

Shows the ext.
public static AsyncShow ( this form, IWin32Window owner ) : void
form this The Form.
owner IWin32Window
리턴 void

AsyncShowDialog() 공개 정적인 메소드

Shows the ext.
public static AsyncShowDialog ( this form ) : DialogResult
form this The Form.
리턴 DialogResult

AsyncShowDialog() 공개 정적인 메소드

Shows the ext.
public static AsyncShowDialog ( this form, IWin32Window owner ) : DialogResult
form this The Form.
owner IWin32Window
리턴 DialogResult

CloseExt() 공개 정적인 메소드

Closes the ext.
public static CloseExt ( this form ) : void
form this The form.
리턴 void

GetChecked() 공개 정적인 메소드

Gets the checked.
public static GetChecked ( this cb ) : bool
cb this The cb.
리턴 bool

GetText() 공개 정적인 메소드

public static GetText ( this ctrl ) : string
ctrl this
리턴 string

GetValue() 공개 정적인 메소드

public static GetValue ( this pb ) : int
pb this
리턴 int

HideExt() 공개 정적인 메소드

Hides the ext.
public static HideExt ( this form ) : void
form this The Form.
리턴 void

IncrementExt() 공개 정적인 메소드

increments the progress bar
public static IncrementExt ( this pb, int increment ) : void
pb this The pb.
increment int The increment.
리턴 void

SetChecked() 공개 정적인 메소드

Sets the checked.
public static SetChecked ( this cb, bool @checked ) : void
cb this The cb.
@checked bool
리턴 void

SetMaximum() 공개 정적인 메소드

Sets the progress bar maximum.
public static SetMaximum ( this pb, int max ) : void
pb this The pb.
max int The max.
리턴 void

SetMinimum() 공개 정적인 메소드

Sets the progress bar minimum.
public static SetMinimum ( this pb, int min ) : void
pb this The pb.
min int The min.
리턴 void

SetText() 공개 정적인 메소드

public static SetText ( this ctrl, string text ) : void
ctrl this
text string
리턴 void

SetValue() 공개 정적인 메소드

Sets the progress bar value.
public static SetValue ( this pb, int value ) : void
pb this The pb.
value int The value.
리턴 void