我对C#中的Listview有一些疑问,我的listview包含2列,如下所示:colDATA1 colDATA2 Value1 Amount1 Value2 Amount2 Value3 Amount3 Value4 Amount4我想做的是Amount5在Listview中搜索如果不存在,请执行一些操作。如果存在,则返回Value5我正在尝试搜索和使用像这样的代码:If (Listview1.items.containskey("Amount5")){}else{MessageBox.show("Not Found")}or if exist then return the value5 *I have no idea how to do.我在谷歌搜索此,但大多数都只有1列,当我使用代码时,代码将无法工作。My question is : 1. How can I get Value5 if Amount5 exist.谢谢你。添加项目的代码First Set listView1 Property "View : Details" Then Using this codethis.Listview1.Items.Add(new ListViewItem(new string[] { Value1, Amount1 }));
1 回答
- 1 回答
- 0 关注
- 161 浏览
添加回答
举报
0/150
提交
取消