C# 클래스 SevenSoftware.Windows.Dialogs.TaskDialog.TaskDialogProgressBar

Provides a visual representation of the progress of a long running operation.
상속: TaskDialogBar
파일 보기 프로젝트 열기: robertbaker/SevenUpdate 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
TaskDialogProgressBar ( ) : System

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class.

TaskDialogProgressBar ( int minimum, int maximum, int value ) : System

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified minimum, maximum and current values.

TaskDialogProgressBar ( string name ) : System

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified name. And using the default values: Min = 0, Max = 100, Current = 0

보호된 메소드들

메소드 설명
Reset ( ) : void

Resets the control to its minimum value.

메소드 상세

Reset() 보호된 메소드

Resets the control to its minimum value.
protected Reset ( ) : void
리턴 void

TaskDialogProgressBar() 공개 메소드

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class.
public TaskDialogProgressBar ( ) : System
리턴 System

TaskDialogProgressBar() 공개 메소드

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified minimum, maximum and current values.
public TaskDialogProgressBar ( int minimum, int maximum, int value ) : System
minimum int The minimum value for this control.
maximum int The maximum value for this control.
value int The current value for this control.
리턴 System

TaskDialogProgressBar() 공개 메소드

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified name. And using the default values: Min = 0, Max = 100, Current = 0
public TaskDialogProgressBar ( string name ) : System
name string The name of the control.
리턴 System