定时器控件
定时器控件(timer),是按一定的时间间隔周期地自动触发事件。在程序运行时,定时器是不可见的。 1.常用的属性。a.Enable属性,为true就启动timer。b.InterVal属性,时间间隔,毫秒为单位。 2.常用的方法。a.Start和Stop方法,启动和停止定时器。 3.常用的事件。a.Tick事件。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication12
{
public partial class Form1 : Form
{
public bool bSave;
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
timer1.Enabled = false;
if (bSave == false)
{
MessageBox.Show( "还没有保存!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information );
bSave = true;
}
timer1.Enabled = true;
}
private void timer2_Tick(object sender, EventArgs e)
{
label1.Text = "当前时间:" + DateTime.Now;
}
private void Form1_Load(object sender, EventArgs e)
{
bSave = false;
timer1.Enabled = true;
timer2.Enabled = true;
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
bSave = false;
}
}
}