如何:使用 Windows 窗体 ListView 控件在列中显示子项
更新:2007 年 11 月
Windows 窗体 ListView 控件可为“详细信息视图”中的每一项显示附加文本或子项。第一列显示项文本,例如雇员编号。第二、第三及随后的列显示第一、第二及随后的关联子项。
将子项添加到列表项中
添加所需的任何列。由于第一列要显示项的 Text 属性,需要的列数应比子项多一个。有关添加列的更多信息,请参见 如何:向 Windows 窗体 ListView 控件中添加列。
调用由项的 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");
// Adds two subitems to the first list item. listView1.get_Items().get_Item(0).get_SubItems().Add("John Smith"); listView1.get_Items().get_Item(0).get_SubItems().Add("Accounting");
请参见
任务
如何:使用 Windows 窗体 ListView 控件添加和移除项
如何:向 Windows 窗体 ListView 控件中添加列
如何:显示 Windows 窗体 ListView 控件的图标
如何:向 TreeView 或 ListView 控件添加自定义信息(Windows 窗体)