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
Try with this:
myListView.ItemsSource = new List< DictionaryEntry >();