为什么我看不到任何选定的项目?

我尝试在用户在ListView中选择项目时做某事。 我试过这段代码:

private void listView1_SelectedIndexChanged(object sender, EventArgs e)
        {
            q = listView1.SelectedItems[0].Index;
        }

但它不起作用,并抛出一个异常,说'listView1.SelectedItems'的计数是0。

为什么它不起作用?


始终检查列表视图项数。 如果项目是空的,那么将会有一个例外。

链接地址: http://www.djcxy.com/p/50333.html

上一篇: Why can't I see any selected items?

下一篇: Using System.Drawing.DrawRectangle to draw Selection Rectangle to select things