2010-09-02 75 views
2
VirtualMode = true 
MultiSelect = false 

我可以得到選定的索引項目,但如何改變它?ListView [VirtualMode]更改選定索引

SelectedIndices是隻讀的。

+0

這就是我所做的: 集OwnDraw,增加利用內部VAR INT(selectIndex )。 在操作添加/刪除項目和SelectedIndexChanged我改變selectIndex。 並在DrawSubItem中使用selectIndex – 2010-09-02 08:18:53

回答

5

不知道你是否已經找到了解決辦法,但我有同樣的問題,只是想出了這個:

listView1.SelectedIndices.Clear(); 
listView1.SelectedIndices.Add(indexToSelect); 
相關問題