本文介绍了获取单一的ListView的SelectedItem的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有ListView控件设置为false的多选
属性,我试图让一个单一的ListViewItem。但可用属性是 SelectedItems
。我一直在使用下面的代码...
I have the MultiSelect
property of the listView set to false and I'm trying to get a single listViewItem. But the available property is SelectedItems
. I've been using the following code...
foreach (ListViewItem item in listView1.SelectedItems)
{
//do something with item.text or whatever
}
因为我知道,那里将仅一个项目选择。什么是这样做的正确方法是什么?
Because I know there will only be one item selected. What is the correct way of doing this?
推荐答案
通常游戏SelectedItems返回某一托收,数组或一个IQueryable
Ususally SelectedItems returns either a collection, an array or an IQueryable.
无论哪种方式,您可以通过索引访问项目作为一个数组:
Either way you can access items via Index as with an array:
String text = listView1.SelectedItems[0].Text;
//do something
顺便说一句,你可以随时保存你想看看一个项目在成 VAR LOOKAT =你想做
和设置一个断点。
这篇关于获取单一的ListView的SelectedItem的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!