How to 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();