Good day!

I have this problem that every text change in the text box, selected item in the datagriview should copy its value. I have this code but it lags when I type(like very fast) in the textbox.

Is there any better way to do this w/o lagging?

Please help...

Here's what I have so far:

private void txtText_TextChanged(object sender, EventArgs e)
    {
        DataGridView1[2, pos].Value = txtText.Text;
    }
有帮助吗?

解决方案

You may need to limit the number of events that are handled. Do your requirements allow you to use the TextBox Validated or LostFocus events instead?

If not you could look into Rx and throttle your TextChanged event. This can be achieved like so:

IObservable<EventPattern<EventArgs>> observable = Observable.FromEventPattern(
  txtText, "TextChanged").Throttle(TimeSpan.FromMilliseconds(500))
  .Subscribe(ep=> DataGridView1[2, pos].Value = txtText.Text;);

You could also throttle with a Timer.

Timer myTimer = new Timer();
myTimer.Interval = 500;
myTimer.Tick = OnTimerTick;

private void OnTimerTick(object o, EventArgs e)
{
  myTimer.Stop();
  DataGridView1[2, pos].Value = txtText.Text;
}

private void txtText_TextChanged(object sender, EventArgs e)
{
   if(!myTimer.Enabled) myTimer.Start();
}

其他提示

You may use the txtText_KeyPress event and see if the user pressed enter key (key code = 13).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top