|
|
by
Ghanashyam Nayak
on
Nov 16, 2011
Using BeginUpdate & EndUpdate method you can avoid repainting a ListView control.
|
|
|
|
|
|
|
|
|
|
|
Here is the code below that how you can avoid the repainting of the ListView or any other control.
MyListView.BeginUpdate(); //Write here you code which will insert the values in listview...
MyListView.EndUpdate();
|
|
|