I have a listView and two buttons (UP, DOWN), and I want to move the selected item up or down.
I was thinking about exchanging between the selected item and the top ... but the code I tried .. makes no sense, because the index is read-only.
also mines or amounts are not owrk .. i cant mess with the index at all.
private void btnDown_Click(object sender, EventArgs e) { listView1.SelectedItems[0].Index--;
So, how can I let the user change the index of the ListViewItem, for example, how VB allows us to change this index of the element [as in the picture]

thanks in advance...
source share