Hi everybody,
I need to delete some items in my ListView (wpf application vb).
For i As Integer = ListView1.SelectedItems.Count - 1 To 0 Step -1
ListView1.SelectedItems(i).Remove()
Next
When i write this code: the system give me this error:
An unhandled exception of type 'System.MissingMemberException' occurred in PresentationFramework.dll
Additional information: Le membre public 'Remove' du type 'ListAcquis' est introuvable.
What is the problem there?
by the way, my listview is :
Private Sub ButtonAdd_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles ButtonAdd.ClickListView1.Items.Add(New ListAcquis With
{
.TextBoxPasEnri = TextBoxPasEnri.Text,
.TextBoxModem = TextBoxModem.Text,
.TextBoxTypSate = TextBoxTypSate.Text,
.TextBoxAdresse = TextBoxAdresse.Text,
.TextBoxVoie = TextBoxVoie.Text})
'Effacer text dans les textbox
TextBoxVoie.Clear()