Udostępnij za pośrednictwem


Porady: dodawanie i usuwanie elementów za pomocą formantu ListView formularzy systemu Windows

Proces dodawania elementu do kontrolki Formularze ListView systemu Windows składa się przede wszystkim z określania elementu i przypisywania do niego właściwości. Dodawanie lub usuwanie elementów listy można wykonywać w dowolnym momencie.

Aby programowo dodawać elementy

  1. Add Użyj metody Items właściwości .

    // Adds a new item with ImageIndex 3
    listView1.Items.Add("List item text", 3);
    
    
    ' Adds a new item with ImageIndex 3
    ListView1.Items.Add("List item text", 3)
    
    

Aby programowo usunąć elementy

  1. RemoveAt Użyj metody Items lub Clear właściwości . Metoda RemoveAt usuwa pojedynczy element; Clear metoda usuwa wszystkie elementy z listy.

    // Removes the first item in the list.
    listView1.Items.RemoveAt(0);
    // Clears all the items.
    listView1.Items.Clear();
    
    
    ' Removes the first item in the list.
    ListView1.Items.RemoveAt(0)
    ' Clears all items:
    ListView1.Items.Clear()
    
    

Zobacz też