表格 View 中的搜索栏是否有一些UI小部件?我的意思是,像这样(屏幕快照不是Qt小部件,而是显示其外观)。

我了解QSortFilterProxyModel支持过滤。那是模型方面。我正在寻找的是 View 侧的相应UI元素。还是我必须自己编写?

最佳答案

您可以在tableView中插入一行,并在其中使用model

model->insertRow(0); //inserts row to the top

然后使用tableView->setItemDelegateForRow(int row, QAbstractItemDelegate * delegate);//make a lineEditDelegate

关于c++ - Qt TableView搜索栏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27585848/

10-15 13:42