In general, there is a piece of code that uses ListView. We must somehow remove the item from the ListView so that the line is immediately deleted. Deleting an item from List<MyClass> (which the ListView relies on) only does this after rotating the screen. How to do it immediately code?

  • one
    Replace List<MyClass> with ObservableCollection<MyClass> - Bulson
  • @Bulson, Thank you, I have already reached it myself))) - Mr. Don't know

0