日期:2014-05-17 浏览次数:20799 次
private void Form1_Load(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
//这里加一个300秒的延迟避免频繁查询的问题
//但是有一个问题 this.label1.Text的上的文字延迟了
//this.textBox1.Text这个也延迟(这个不是我想要的)
// 在this.textBox1.Text 快速输入 123456 但是在this.textBox1.Text上有明显的延迟 这不是我们想要的
System.Threading.Thread.Sleep(300);
this.label1.Text = this.textBox1.Text;//这个地方将来要换成查询数据库的操作逻辑代码
// 应该this.label1.Text 整个显示是延迟的 this.textBox1.Text显示是同步的 需要用到线程的一部调用吗?怎么实现?
}
Timer timer = new Timer();
public Form1()
{
InitializeComponent();
timer.Interval = TimeSpan.FromMilliseconds(300);
timer.Tick += timer_Tick;
}
void timer_Tick(object sender, EventArgs e)
{
timer.Stop();
this.label1.Text = this.textBox1.Text;
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
timer.Start();
}
public delegate void DelayHanddler();
public Form1()
{
InitializeComponent();
}