2
如何在將項目添加到ListView時獲取索引?插入ListView項目的索引
林添加的項目如下
flatListView1.Items.Add(name).SubItems.AddRange(row1);
如何在將項目添加到ListView時獲取索引?插入ListView項目的索引
林添加的項目如下
flatListView1.Items.Add(name).SubItems.AddRange(row1);
您可能需要這一點,因爲該項目在添加的列表項結束將是最後一次。因此總項目-1將是索引,因爲索引從零開始。
flatListView1.Items.Add(name).SubItems.AddRange(row1);
int index = flatListView1.Items.Count -1;
var lviewItem=flatListView1.Items.Add(name)
var index=flatListView1.Items.IndexOf(lviewItem)