How to traverse the item in the collection in a List or Observable collection?
- by Ashish Ashu
I have a collection that is binded to my Listview.
I have provided options to user to "move up" "move down" the selected item in the list view. I have binded the selected item of the listview to my viewmodel, hence I get the item in the collection on which user want to do the operation.
I have attached "move up" "move down" commands in my viewmodel.
I want what is the best way to move up and down in the collection in the collection which is reflected in the list view.
Please suggest.