init
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IStatusAndProgressBarFooterViewModel : IBaseViewModel
|
||||
{
|
||||
IStatusAndProgressFooterView View { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IStatusAndProgressBarView : IBaseView
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IStatusAndProgressBarViewModel : IBaseViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the Search View.
|
||||
/// </summary>
|
||||
IBaseView View { get; set; }
|
||||
IBaseViewModel Parent { get; set; }
|
||||
string ProgressBarName { get; set; }
|
||||
object ContextSearchRegion { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IStatusAndProgressFooterView : IBaseView
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user