我有一個ListView。我想從中選擇第一個元素,然後調用一個方法。事情是,雖然我有列表視圖中的元素我不知道爲什麼下面的代碼不工作,當我想選擇元素。需要幫忙。 THXlistview error c#
listview.Items[0].Selected = true;
listview.Select();
int c =listview.SelectedItems.Count;
MessageBox.Show(c + ": and : " + listview.Items[0].ToString()); .//here the c=0 and it should be 1:(
// Thread.Sleep(3000);
method();
我有:
ListViewItem it = new ListViewItem("a");
it.SubItems.Add("s");
it.SubItems.Add(""v");
it.Tag = call;
listview.Items.Add(it);
通過積極參與加入StackOverflow的社區。經常投票,將帖子標記爲答案,幫助其他人。確保有人能夠幫助你回報的最佳途徑。 – 2011-03-14 13:08:18