C# 클래스 SignMaster.ProgressForm

파일 보기 프로젝트 열기: sillsdevinstaller 1 사용 예제들

공개 메소드들

메소드 설명
BeginStep ( string item ) : void

Called when a new progress item of work is started.

EndStep ( string report ) : void

Called when a progress item of work is completed.

Finished ( bool canClose ) : void

Called when all work covered by progress dialog is complete.

Init ( int numSteps ) : void

Initializes the progress dialog.

IsCanceled ( ) : bool
ProgressForm ( ) : System

Constructor

보호된 메소드들

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

Clean up any resources being used.

비공개 메소드들

메소드 설명
BtnProgressCancelClick ( object sender, EventArgs e ) : void

Response to user pressing Cancel button

DoBeginStep ( string item ) : void

Delegated version of BeginStep().

DoEndStep ( string report ) : void

Delegated version of EndStep().

DoFinished ( bool canClose ) : void

Delegated version of Finished().

InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

ScrollProgressTextToBottom ( ) : void

Trick to make sure multi-line text box shows latest text added.

메소드 상세

BeginStep() 공개 메소드

Called when a new progress item of work is started.
public BeginStep ( string item ) : void
item string Description of work, typically the name of the file about to be signed.
리턴 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

EndStep() 공개 메소드

Called when a progress item of work is completed.
public EndStep ( string report ) : void
report string Desciption of any problems encounterd while doing the work step.
리턴 void

Finished() 공개 메소드

Called when all work covered by progress dialog is complete.
public Finished ( bool canClose ) : void
canClose bool True if work completed successfully.
리턴 void

Init() 공개 메소드

Initializes the progress dialog.
public Init ( int numSteps ) : void
numSteps int Number of steps of work to be done
리턴 void

IsCanceled() 공개 메소드

public IsCanceled ( ) : bool
리턴 bool

ProgressForm() 공개 메소드

Constructor
public ProgressForm ( ) : System
리턴 System