C# Clear all items in ListView
How about
DataSource = null;
DataBind();
Try this ...
myListView.DataSource = null;
myListView.Items.Clear();
I did a search on this and I am using WPF c#. Just in case you got here too looking for a WPF solution use the following:
yourlistview.ItemsSource = null;