using System;
using System.Collections.Generic;
using System.Text;
namespace IReaper.Statues{
class EmptyStatusStrip:IiReaperStatusStrip
{
#region IiReaperStatusStrip
public string InfomationMessage
{
set { }
}
public int Percentage
{
set { }
}
public string TaskMessage
{
set { }
}
public void BeginAsyncWork(AsyncWork Work)
{
}
#endregion
}
}
|