如何单独从 QTableView 和 QStandardItemModel 获取复选框项?
似乎使用 model.setData(index, Qt::Checked,Qt::CheckStateRole) 不足以使复选框正常工作。有什么建议吗?
Seems using model.setData(index, Qt::Checked,Qt::CheckStateRole) is not enough to get the checkbox working right. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信你需要子类化 QStandardItemModel;重写 flags 方法并返回 Qt::ItemIsUserCheckable 以及带有复选框的列的其他标志。下面是一个例子:
这是我初始化控件的方式:
希望这有帮助,问候
I believe you would need to subclass QStandardItemModel; override flags method and return Qt::ItemIsUserCheckable along with other flags for the column with check boxes. Below is an example:
here's how I was initializing controls:
hope this helps, regards