gpt4 book ai didi

c# - 获取ListView中选中的Item的索引

转载 作者:太空狗 更新时间:2023-10-29 18:02:58 29 4
gpt4 key购买 nike

我已经搜索了大约一个小时,但找不到最佳解决方案。我正在从 VB.NET 迁移到 C# Forms 和 C# WPF。不要管那个...所以我将此代码用于 C# 表单并且它有效,但在 C# WPF 中无效

 if (ListView1.SelectedItems.Count > 0)
{
for (lcount = 0; lcount <= ListView1.Items.Count - 1; lcount++)
{
if (ListView1.Items[lcount].Selected == true)
{
var2 = lcount;
break;
}
}
}

这是我想要获取在列表框中单击的项目的索引的方式。我在 .SELECTED 中有错误

请帮忙。

最佳答案

您可以从 listView 中获取 SelectedIndex。无需遍历所有项目,因为根据您的代码,您似乎对任何选定项目的索引感兴趣。

var2 = ListView1.SelectedIndex;

如果只对第一个索引感兴趣,这将有效:

if (lst.SelectedItems.Count > 0)
{
var2 = lst.Items.IndexOf(lst.SelectedItems[0]);
}

关于c# - 获取ListView中选中的Item的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21327931/

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