ProgressInitEventArgs.cs
36 lines
| 732 B
| text/x-csharp
|
CSharpLexer
/ Implab / ProgressInitEventArgs.cs
|
|
r7 | using System; | ||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| namespace Implab | ||||
| { | ||||
|
|
r12 | [Serializable] | ||
|
|
r7 | public class ProgressInitEventArgs: EventArgs | ||
| { | ||||
| public float MaxProgress | ||||
| { | ||||
| get; | ||||
| private set; | ||||
| } | ||||
| public float CurrentProgress | ||||
| { | ||||
| get; | ||||
| private set; | ||||
| } | ||||
| public string Message | ||||
| { | ||||
| get; | ||||
| private set; | ||||
| } | ||||
| public ProgressInitEventArgs(float current, float max, string message) | ||||
| { | ||||
| this.MaxProgress = max; | ||||
| this.CurrentProgress = current; | ||||
| this.Message = message; | ||||
| } | ||||
| } | ||||
| } | ||||
