I have an ObservableCollection bound to a ListView, and I have a button, where, when I click it, it starts a syncronous method that adds items to the ObservableCollection. I have noticed that I do not see the list update until the method is finished. I have also tried this in an async method. Is there any way to have the ListView update right after the mycoll.Add("test string")?
↧