c – Qt删除QTableView中的选定行

前端之家收集整理的这篇文章主要介绍了c – Qt删除QTableView中的选定行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在单击删除按钮时从表中删除选定的行.

但我找不到有关删除Qt文档中的行的任何内容.有任何想法吗?

解决方法

您可以使用bool QAbstractItemModel :: removeRow(int row,const QModelIndex& parent = QModelIndex())功能.

在这里你可以找到所有这一切的example.

此外,这是该文档的内联引用:

removeRows()

Used to remove rows and the items of data they contain
from all types of model. Implementations must call beginRemoveRows()
before inserting new columns into any underlying data structures,and
call endRemoveRows() immediately afterwards.

该任务的第二部分是将按钮的单击信号连接到执行删除的插槽.

原文链接:https://www.f2er.com/c/116507.html

猜你在找的C&C++相关文章