Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何删除列表视图中特定索引处的项目并将该项目替换为该指定索引处的新项目。
我可以打电话ListView.Items.RemoveAt(index);
ListView.Items.RemoveAt(index);
但是我找不到替换该索引处的项目的方法。
这里的任何帮助将不胜感激。
您应该可以使用insert。
ListView.Items.RemoveAt(index); ListView.Items.Insert(index, item);
也未经测试,但我不明白为什么ListView.Items[index] = ...不应该工作
ListView.Items[index] = ...