Nuclex.Support/Source/Tracking/ProgressUpdateEventArgs.cs
Markus Ewald 71b6dc90a2 SetProgression partially working; wrote several unit tests using the NMock library; lots of smaller improvements to the progression classes
git-svn-id: file:///srv/devel/repo-conversion/nusu@12 d2e56fa2-650e-0410-a79f-9358c0239efd
2007-04-19 18:18:34 +00:00

27 lines
750 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Nuclex.Support.Tracking {
/// <summary>Event arguments for a progress update notification</summary>
public class ProgressUpdateEventArgs : EventArgs {
/// <summary>Initializes the progress update informations</summary>
/// <param name="progress">Achieved progress ranging from 0.0 to 1.0</param>
public ProgressUpdateEventArgs(float progress) {
this.progress = progress;
}
/// <summary>Currently achieved progress</summary>
public float Progress {
get { return this.progress; }
}
/// <summary>Achieved progress</summary>
private float progress;
}
} // namespace Nuclex.Support.Tracking