ProgressInitEventArgs.cs
36 lines
| 732 B
| text/x-csharp
|
CSharpLexer
/ Implab / ProgressInitEventArgs.cs
cin
|
r7 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
namespace Implab | ||||
{ | ||||
cin
|
r12 | [Serializable] | ||
cin
|
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; | ||||
} | ||||
} | ||||
} | ||||