To whom it may concern,
we are evaluating your GridView component. However, just found the gridview control keeps freezing?
See attached sample project, did I do something wrong?
Any of your reply will be highly appreciated, thank you!
By using the Begin-End update methods, you are suppressing the data engine to track the changes that you are doing. In addition, you should change or invoke methods of Winforms controls in the main UI thread. If you want to do that from another thread you should use the Invoke method the perform your operations. I am enclosing a modified version of your project where I have applied all changes that you should do.