如何:使用 Windows 窗体 ListView 控件在列中显示子项

Windows 窗体 ListView 控件可以在“详细信息”视图中显示每个项的附加文本或子项。 第一列显示项文本,例如员工编号。 第二、第三和后续列显示第一个、第二个和后续关联子项。

向列表项添加子项

  1. 添加所需的任何列。 因为第一列将显示项的 Text 属性,因此需要的列数比子项数多一。 有关添加列的详细信息,请参阅如何:向 Windows 窗体 ListView 控件中添加列

  2. 调用由项的 SubItems 属性返回的集合的 Add 方法。 以下代码示例为列表项设置员工姓名和部门。

    // Adds two subitems to the first list item.
    listView1.Items[0].SubItems.Add("John Smith");
    listView1.Items[0].SubItems.Add("Accounting");
    
    
    ' Adds two subitems to the first list item
    ListView1.Items(0).SubItems.Add("John Smith")
    ListView1.Items(0).SubItems.Add("Accounting")
    
    

另请参阅