我们可以在一段特定的时间跨度内显示窗体,比如1分钟,然后自动关闭吗?
答案 0 :(得分:8)
从Toolbox添加一个Timer控件。 设置一些属性。
this.timer1.Enabled = true;
this.timer1.Interval = 60000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
并定义Tick事件处理程序
private void timer1_Tick(object sender, EventArgs e)
{
Close();
}
答案 1 :(得分:1)
使用Timer
,让它在您需要的时间后关闭表单。
答案 2 :(得分:0)
是。使用System.Windows.Forms.Timer,当计时器触发时,调用this.Close()。