15 lines
658 B
Plaintext
15 lines
658 B
Plaintext
|
|
using System.Windows.Forms;
|
||
|
|
using System.Windows.Media;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface.StatusAndProgressBar
|
||
|
|
{
|
||
|
|
public delegate void SetProgressValueDelegate(double value);
|
||
|
|
public delegate void SetStatusTextDelegate(string text);
|
||
|
|
public delegate void SetProgressVisibilityDelegate(bool bVisible);
|
||
|
|
public delegate void SetStatusColorDelegate(Color color);
|
||
|
|
public delegate void ActionCompleteDelegate();
|
||
|
|
public delegate void StatusIntDelegate(int status);
|
||
|
|
public delegate void StatusExIntDelegate(int status, params object[] extra);
|
||
|
|
public delegate DialogResult ErrorCallback(string errorString, string unit);
|
||
|
|
}
|