1. 程式人生 > >QListWidget獲取當前檢視索引的方法

QListWidget獲取當前檢視索引的方法

Qt在開發QListWidget控制元件的時候,會遇到獲取當前檢視所處的索引的問題,那麼我們如何獲取這些索引以進行相應處理呢?

方法: int index = QListWidget->indexAt(QListWidget->viewport->contentsRect->topLeft->row()); 獲取左上角的項索引;

其他類似;