QTableView - 当用户通过单击选择一行时发送什么信号?
当用户通过鼠标在 QTableView 中选择一行(单选模型)时,是否会发出信号?
Is there a signal which is emitted when the user selects a row in QTableView
by mouse (single selection model)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个视图都有一个选择模型:
通过选择模型,您可以检索大量信息,在您的情况下:
所以:
然后您可以通过如下信号检索这些信息:
希望它有帮助!
Each view has a Selection model :
and with the selection model you can retrieve lots of informations, in your case :
So :
You can then retrieve this informations through a signal like :
Hope it helps !