public class Setting
{
private Timer time;
private double _outinterval = 1.0;//用户输入的定时器间隔
private string _type = "h";//用户输入的定时器间隔类型,h为小时,m分,s秒
public double outinterval
{
get
{
return _outinterval;
}
set
{
_outinterval = value;
}
}
public double type
{
get
{
return _type;
}
set
{
_type = value;
}
}
public Setting()
{
time = new Timer();
time.Elapsed += new ElapsedEventHandler(time_Elapsed);
}
void time_Elapsed(object sender, ElapsedEventArgs e)
{
//定时器时间到后的代码
}
public void startTime()
{
time.Interval = changetype(_outinterval,_type);
time.Enabled = true;
time.AutoReset = true;
}
public void endTime()
{
time.Enabled = false;
}
private double changetype(double interval,string type)
{
switch (type.ToUpper())
{
case "h": return _outinterval = interval * 60 * 60 * 1000; break;
case "m": return _outinterval = interval * 60 * 1000; break;
case "s": return _outinterval = interval * 1000; break;
}
}
}