C# Class IBE.ProgressView

Show file Open project: Duke-Jones/ED-IBE

Public Methods

Method Description
ProgressView ( Control parent = null, Boolean SelfDoEvents = true ) : System
progressInfo ( string Info ) : void

sets a new info string

progressStart ( string Info = "" ) : void

shows the progress view

progressStop ( ) : void

closes the progress view

progressUpdate ( Int32 Value, Int32 Total, String infoText = null ) : void

set the progress to a new value

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Verwendete Ressourcen bereinigen.

Private Methods

Method Description
InitializeComponent ( ) : void

Erforderliche Methode für die Designerunterstützung. Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.

cmdCancel_Click ( object sender, System e ) : void

event function of cancel button

progressUpdate ( Int32 Percent ) : void

set the progress to a new value

Method Details

Dispose() protected method

Verwendete Ressourcen bereinigen.
protected Dispose ( bool disposing ) : void
disposing bool True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.
return void

ProgressView() public method

public ProgressView ( Control parent = null, Boolean SelfDoEvents = true ) : System
parent Control
SelfDoEvents Boolean
return System

progressInfo() public method

sets a new info string
public progressInfo ( string Info ) : void
Info string
return void

progressStart() public method

shows the progress view
public progressStart ( string Info = "" ) : void
Info string
return void

progressStop() public method

closes the progress view
public progressStop ( ) : void
return void

progressUpdate() public method

set the progress to a new value
public progressUpdate ( Int32 Value, Int32 Total, String infoText = null ) : void
Value Int32 progress current value
Total Int32 total value
infoText String
return void