![]() |
How to remove specific item from listView
I am trying to remove item from ListView but when i click on remove it doesnt remove the last item or in the middle but when i select the first item it removes.
How is it possible to remove any selected item in the list? Code:
private void removeBtn_Click(object sender, EventArgs e) |
Re: How to remove specific item from listView
while (scheduleListView.SelectedItems.Count > 0)
{ scheduleListView.Items.Remove(scheduleListView.Sel ectedItems[0]); } It worked . Thanks anyway |
| All times are GMT +5.5. The time now is 14:51. |