I have two listviews and two buttons(add and remove). I can select an item from one list view to another listview. I have achieved the movement of items from one list to another.But I want the moved item to be selected in the other listview as well. If i select multiple items and move it then I want the multiple items to be selected in the moved listview.
Share
After you added the items to the second
ListBox, and them to the secondListBox‘sSelectedItemsproperty too. You can call theClear()method of theSelectedItemsproperty before adding items to it so that only the new items will be selected.Example: