我对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 code
this.Listview1.Items.Add(new ListViewItem(new string[] { Value1, Amount1 }));
相关分类