1 2 3 4 5 6 |
System.Threading.Timer _timer = new System.Threading.Timer(x => { Invoke(new Action(() => { xxx(); })); }); textBox1.TextChanged += (s, e) => { _timer.Change(500, Timeout.Infinite); }; |
自分用のメモです。内容が間違っていたり、作りかけで動作しないコードなどあるのでご注意ください。
1 2 3 4 5 6 |
System.Threading.Timer _timer = new System.Threading.Timer(x => { Invoke(new Action(() => { xxx(); })); }); textBox1.TextChanged += (s, e) => { _timer.Change(500, Timeout.Infinite); }; |