gpt4 book ai didi

c# - 计算与 ListView 中的指定字符串匹配的项目数

转载 作者:太空宇宙 更新时间:2023-11-03 13:53:25 25 4
gpt4 key购买 nike

我正在尝试计算 ListView 中匹配“保留”的项目数。我有以下代码,但它没有正确计数。

public void update_seat(ListView lstv1, Label lbl1, Label lbl2)
{
foreach (ListViewItem liv in lstv1.Items)
{
if (liv.SubItems[1].Text == "Reserved")
{
liv.Selected = true;

int y = lstv1.SelectedItems.Count;
lbl1.Text = y.ToString();

}
}
}

我做错了什么?

最佳答案

从下图中可以看出,下面的代码计算指定列中出现的次数。您只需要调整 SubItems[int] 部分中的整数。

public void update_seat(ListView lstv1, Label lbl1, Label lbl2)
{
int count = 0;

foreach (ListViewItem item in lstv1.Items)
{
if (item.SubItems[0].Text == "Reserved")
count++;
}
}

enter image description here

关于c# - 计算与 ListView 中的指定字符串匹配的项目数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13060838/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com