Home »

How can you unselect the selected items in a ListView control programmatically in .NET 4.0?

Question ListCategory: C#.NETHow can you unselect the selected items in a ListView control programmatically in .NET 4.0?
alisataylore190 author asked 9 years ago
1 Answers
jully882 author answered 8 years ago

The syntax to unselect the selected items in the ListView control is shown in the following code snippets: Code for VB: Me.listView1.SelectedItems.Clear() Code for C#: this.listView1.SelectedItems.Clear();

Please login or Register to Submit Answer