C# Класс DroidExplorer.ControlDelegateExtensions

Показать файл Открыть проект

Открытые методы

Метод Описание
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