0
我的windows窗體上有一個list-view
,其中200件物品。我的查詢是,如果我發現某些項目在拼寫或其他方面有一些錯誤。所以,當我選擇該項目,然後在list-view
修改回來,然後我想專注於該特定項目。在列表視圖中修改項目後的自動對焦
現在我這樣做: -
listView1.Items[this.listView1.Items.Count - 1].EnsureVisible();
//i know that this code is for focusing on the very last item.
請幫助我。
thanks in adv。 :)
什麼是你的代碼的問題? – 2013-03-18 07:24:09
我dnt與我的代碼有任何問題。我只想專注於在點擊更新按鈕後在列表視圖中修改的特定項目。 – 2013-03-18 07:31:44
你的「特定物品」是什麼?你有物品的索引,還是'ListViewItem'對象? – 2013-03-18 07:35:50