PyQt 表格视图和编辑多个选定的单元格
我一直在研究一个简单的表格视图模型,当我想编辑多个单元格时,我遇到了绊脚石。 具体来说,我需要能够更改单元格复选框的检查状态。当我选择多个单元格并切换复选框时,只有单击的单元格才会更新其复选框。 任何帮助都会很棒。 谢谢
Ive been working on a simple tableview model, ive hit a stumbling block when i want to edit multiple cells.
Specifically I need to be able to change the checkstate on my cells checkboxes. When i select more then one cell and toggle the check boxes only the clicked cell updates its checkboxes.
Any help would be great.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你有一个变量来存储你选择的单元格。然后,对于所有选定的单元格,您可以通过调用 setCheckedState 来强制检查() 方法。
如果我弄错了,请告诉我。
I guess you have a variable to store your selected cells. Then for all selected cells you force the checking by calling the setCheckedState() method.
Let me know if I'm mistaken.