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.
我需要有关列表视图的帮助。我正在尝试删除列表视图中的记录,但是当我尝试使用 lvRecords.Clear() 时,它也会删除我需要的列。我只需要清除记录而不是列。:(
根据MSDN,该ListView.Clear方法
ListView.Clear
从控件中删除所有项目和列。
要仅清除项目,您需要调用属性Clear上的方法。Items试试这个:
Clear
Items
lvRecords.Items.Clear
将列设置放在单独的方法中,然后在清除后调用设置方法