我正在尝试将项目添加到ListView
控件。我希望添加带有文本值(显示)和隐藏键值的项目,当它被选中时。
我试过以下代码:
string flows_path = "C:\\temp\\Failed Electricity flows\\";
List<ListViewItem> flows_loaded = new List<ListViewItem>();
foreach (string s in Directory.GetFiles(flows_path, "*.rcv").Select(Path.GetFileName))
{
ListViewItem new_item = new ListViewItem(s, 1);
ListViewItem.ad
// Add the flow names to the list
flows_loaded.Add(new_item);
}
但它告诉我,ListViewItem
它没有过载,(string, int)
也没有我可以设置的“值”、“文本”或“键”值。
ListViewItem("My Item")
有效,但我不知道如何为每个项目实现一个密钥。