C# 클래스 BF2Statistics.TaskProgressUpdate

This class is used to post updated progress to the TaskForm, allowing the form's progressbar and text fields to be changed as progress updates.
파일 보기 프로젝트 열기: BF2Statistics/ControlCenter 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
HeaderText string
IncrementProgress bool
MessageText string
ProgressPercent int
WindowTitle string

공개 메소드들

메소드 설명
TaskProgressUpdate ( ) : System

Creates a new instance of TaskProgressUpdate

TaskProgressUpdate ( int ProgressPercent, bool IncrementPercent = false ) : System

Creates a new instance of TaskProgressUpdate

TaskProgressUpdate ( string MessageText ) : System

Creates a new instance of TaskProgressUpdate

TaskProgressUpdate ( string MessageText, int ProgressPercent, bool IncrementPercent = false ) : System

Creates a new instance of TaskProgressUpdate

TaskProgressUpdate ( string MessageText, string HeaderText ) : System

Creates a new instance of TaskProgressUpdate

TaskProgressUpdate ( string MessageText, string HeaderText, int ProgressPercent, bool IncrementPercent = false ) : System

Creates a new instance of TaskProgressUpdate

메소드 상세

TaskProgressUpdate() 공개 메소드

Creates a new instance of TaskProgressUpdate
public TaskProgressUpdate ( ) : System
리턴 System

TaskProgressUpdate() 공개 메소드

Creates a new instance of TaskProgressUpdate
public TaskProgressUpdate ( int ProgressPercent, bool IncrementPercent = false ) : System
ProgressPercent int Sets the progress percentage of the TaskForm's progress bar
IncrementPercent bool /// If set to true, then is Incremented onto the progressbar's current percentage ///
리턴 System

TaskProgressUpdate() 공개 메소드

Creates a new instance of TaskProgressUpdate
public TaskProgressUpdate ( string MessageText ) : System
MessageText string Sets the content status message of the TaskForm
리턴 System

TaskProgressUpdate() 공개 메소드

Creates a new instance of TaskProgressUpdate
public TaskProgressUpdate ( string MessageText, int ProgressPercent, bool IncrementPercent = false ) : System
MessageText string Sets the content status message of the TaskForm
ProgressPercent int Sets the progress percentage of the TaskForm's progress bar
IncrementPercent bool /// If set to true, then is Incremented onto the progressbar's current percentage ///
리턴 System

TaskProgressUpdate() 공개 메소드

Creates a new instance of TaskProgressUpdate
public TaskProgressUpdate ( string MessageText, string HeaderText ) : System
MessageText string Sets the content status message of the TaskForm
HeaderText string Sets the Instruction (header) text of the TaskForm
리턴 System

TaskProgressUpdate() 공개 메소드

Creates a new instance of TaskProgressUpdate
public TaskProgressUpdate ( string MessageText, string HeaderText, int ProgressPercent, bool IncrementPercent = false ) : System
MessageText string Sets the content status message of the TaskForm
HeaderText string Sets the Instruction (header) text of the TaskForm
ProgressPercent int Sets the progress percentage of the TaskForm's progress bar
IncrementPercent bool /// If set to true, then is Incremented onto the progressbar's current percentage ///
리턴 System

프로퍼티 상세

HeaderText 공개적으로 프로퍼티

Sets the Instruction Text of the TaskForm
public string HeaderText
리턴 string

IncrementProgress 공개적으로 프로퍼티

Gets or Sets whether the progress bar is set, or incremented from its current value
public bool IncrementProgress
리턴 bool

MessageText 공개적으로 프로퍼티

Sets the Content Message Text of the TaskForm
public string MessageText
리턴 string

ProgressPercent 공개적으로 프로퍼티

Sets the Progress Bar Percentage of the TaskForm
public int ProgressPercent
리턴 int

WindowTitle 공개적으로 프로퍼티

Sets the Window Title of the TaskForm
public string WindowTitle
리턴 string