I need to freeze (stop redrawing) DataGridView while I processing fields update.
Is there something like BeginUpdate to temporary freeze DataGridView
Your best bet is to use the extension methods in Adam Robinson's answer here.
Use them with your DataGridView like this:
yourDataGridView.SuspendDrawing();
// update your fields.
yourDataGridView.ResumeDrawing();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With