次の方法で共有


方法: Windows フォーム ListView コントロールで項目を追加および削除する

項目を Windows フォームの ListView コントロールに追加するプロセスは、主に項目の指定と、それに対するプロパティの割り当てで構成されています。 リスト項目の追加または削除は、いつでも行うことができます。

プログラムを使って項目を追加するには

  1. Items プロパティの Add メソッドを使用します。

    // 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)
    
    

プログラムを使って項目を削除するには

  1. Items プロパティの RemoveAt または Clear メソッドを使用します。 RemoveAt メソッドを使用すると、1 つの項目が削除されます。Clear メソッドを使用すると、リストからすべての項目が削除されます。

    // 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()
    
    

関連項目