3个回答
展开全部
在代码中定义一个Timer
public partial class Form1 : Form
{
Timer tmr;
public Form1()
{
InitializeComponent();
tmr = new Timer();
tmr.Tick += new EventHandler(tmr_Tick);
tmr.Interval = 1000;
}
void tmr_Tick(object sender, EventArgs e)
{
//throw new NotImplementedException();
//事件处理
}
}
public partial class Form1 : Form
{
Timer tmr;
public Form1()
{
InitializeComponent();
tmr = new Timer();
tmr.Tick += new EventHandler(tmr_Tick);
tmr.Interval = 1000;
}
void tmr_Tick(object sender, EventArgs e)
{
//throw new NotImplementedException();
//事件处理
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询