I try to clear my listview but the clear method doesn\'t work:
myListView.Items.Clear();
This doen\'t work. When i put a breakpoint at this
This is bit late, but this works for me at least using UWP
myListView.ItemsSource = null;