c#winfrom 想做个每隔一段时间一个窗体显示出来用timer不知道怎么会是这样了,鼠标放在上面不能操作了
System.Timers.Timert=newSystem.Timers.Timer(10000);//实例化Timer类,设置间隔时间为10000毫秒;t.Elaps...
System.Timers.Timer t = new System.Timers.Timer(10000);//实例化Timer类,设置间隔时间为10000毫秒;
t.Elapsed += new System.Timers.ElapsedEventHandler(theout);//到达时间的时候执行事件;
t.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;
public void theout(object source, System.Timers.ElapsedEventArgs e)
{
Foxc oxs = new Foxc();
oxs.Show();
//MessageBox.Show("OK");
} 展开
t.Elapsed += new System.Timers.ElapsedEventHandler(theout);//到达时间的时候执行事件;
t.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;
public void theout(object source, System.Timers.ElapsedEventArgs e)
{
Foxc oxs = new Foxc();
oxs.Show();
//MessageBox.Show("OK");
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询