获取单个listView SelectedItem

时间:2013-02-26 14:19:50

标签: c# winforms listviewitem

我将listView的MultiSelect属性设置为false,并且我正在尝试获取单个listViewItem。但可用属性为SelectedItems。我一直在使用以下代码......

foreach (ListViewItem item in listView1.SelectedItems)
{
    //do something with item.text or whatever
}

因为我知道只会选择一个项目。这样做的正确方法是什么?

9 个答案:

答案 0 :(得分:22)

通常SelectedItems会返回集合,数组或IQueryable

无论哪种方式,您都可以通过索引访问项目,如同数组:

String text = listView1.SelectedItems[0].Text; 
//do something

顺便说一下,您可以随时将要查看的项目保存到var lookat = whatever you want中,并在设置断点后检查其在Locals中的结构。

答案 1 :(得分:9)

我这样做:

if (listView1.SelectedItems.Count > 0)
{
     var item = listView1.SelectedItems[0];
     //rest of your logic
}

答案 2 :(得分:4)

有时仅使用下面的行会抛出异常,

String text = listView1.SelectedItems[0].Text; 

所以我使用下面的代码:

private void listView1_SelectedIndexChanged(object sender, EventArgs e) 
{ 
    if (listView1.SelectedIndices.Count <= 0) 
    { 
        return; 
    } 
    int intselectedindex = listView1.SelectedIndices[0]; 
    if (intselectedindex >= 0) 
    {
        String text = listView1.Items[intselectedindex].Text;

        //do something
        //MessageBox.Show(listView1.Items[intselectedindex].Text); 
    } 
}

答案 3 :(得分:1)

如果它只是一个带有一个或两个ListViews的小应用程序,我通常会创建一个小帮手属性:

private ListViewItem SelectedItem { get { return (listView1.SelectedItems.Count > 0 ? listView1.SelectedItems[0] : null); } }

如果我有负载,则将其移至辅助类:

internal static class ListViewEx
{
    internal static ListViewItem GetSelectedItem(this ListView listView1)
    {
        return (listView1.SelectedItems.Count > 0 ? listView1.SelectedItems[0] : null);
    }
}

这样:

ListViewItem item = lstFixtures.GetSelectedItem();

ListView界面有点垃圾,所以我通常会发现辅助类增长很快。

答案 4 :(得分:0)

对于购物车情况,这是我的建议。我要把它分解成最简单的形式。

假设我们从这开始(带有2个列,2个按钮和标签的列表视图): starting

首先,删除项目,为此我们将输入删除按钮:

private void button2_Click(object sender, EventArgs e)
{
    listView1.Items.Remove(listView1.SelectedItems[0]);
    label1.Text = updateCartTotal().ToString();
}

现在第二行正在使用下一个函数更新我们的标签总数,我将发布到列表视图中的所有第2列的总计:

private decimal updateCartTotal()
{
    decimal runningTotal = 0;
    foreach(ListViewItem l in listView1.Items)
    {
        runningTotal += Convert.ToDecimal(l.SubItems[1].Text);
    }
    return runningTotal;
}

你不必像我一样使用十进制,如果你没有小数,你可以使用float或int。所以让我们分解吧。我们使用for循环来计算第2列中的所有项(SubItems [1] .Text)。将它添加到我们在foreach循环之前声明的小数以保持总计。如果你想做税,你可以这样做:

return runningTotal * 1.15;

或任何税率。

长短不一,使用此功能,您只需调用该功能即可重新调整列表视图。你可以改变标签文本,就像我之前演示过的那样,如果那就是你所追求的。

答案 5 :(得分:0)

上面的答案,至少在我看来,都没有显示如何实际处理确定您是否有1个项目或多个项目,以及如何以不依赖于那里的通用方式实际获取项目中的值实际上只是一个项目,或多个项目,所以我把我的帽子扔进戒指。

通过检查您的点数来查看您至少有一个项目,然后在foreach上执行.SelectedItems循环,将每个项目投放为DataRowView,这非常容易且通常完成}:

if (listView1.SelectedItems.Count > 0)
{
     foreach (DataRowView drv in listView1.SelectedItems)
     {
         string firstColumn = drv.Row[0] != null ? drv.Row[0].ToString() : String.Empty;
         string secondColumn = drv.Row[1] != null ? drv.Row[1].ToString() : String.Empty;
         // ... do something with these values before they are replaced
         // by the next run of the loop that will get the next row
     }
}

无论您有1件还是多件,这都可以。有趣MSDN says使用ListView.SelectedListViewItemCollection来捕获listView1.SelectedItems并进行迭代,但我发现这在我的WPF应用中出错:The type name 'SelectedListViewItemCollection' does not exist in type 'ListView'

答案 6 :(得分:0)

这适用于单选列表和多选列表:

foreach (ListViewItem item in listView1.SelectedItems)
{
    int index = ListViewItem.Index;
    //index is now zero based index of selected item
}

答案 7 :(得分:0)

foreach (ListViewItem itemRow in taskShowListView.Items)
{
    if (itemRow.Items[0].Checked == true)
    {
        int taskId = Convert.ToInt32(itemRow.SubItems[0].Text);

        string taskDate = itemRow.SubItems[1].ToString();
        string taskDescription = itemRow.SubItems[2].ToString();            
    }
}

答案 8 :(得分:0)

如果要选择单个列表视图项,请在没有鼠标单击的情况下尝试此操作。

private void timeTable_listView_MouseUp(object sender, MouseEventArgs e)
        {
            Point mousePos = timeTable_listView.PointToClient(Control.MousePosition);
            ListViewHitTestInfo hitTest = timeTable_listView.HitTest(mousePos);



            try
            {
            int columnIndex = hitTest.Item.SubItems.IndexOf(hitTest.SubItem);
            edit_textBox.Text = timeTable_listView.SelectedItems[0].SubItems[columnIndex].Text;
            }
            catch(Exception)
            {

            }



        }