How to get QTableView right clicked index(如何获取 QTableView 右键单击索引)
问题描述
下面的代码创建了一个带有 QTableView 视图的对话框.左键单击 onLeftClick 函数会获得一个 QModelIndex index.此 QModelIndex 稍后用于打印左键单击单元格的行号和列号.
The code below creates a single dialog with a QTableView view.
On left-click the onLeftClickfunction gets an QModelIndex index.
This QModelIndex is used later to print the row and column numbers of the left-clicked cell.
如何获取被右键单击的单元格的QModelIndex索引?
How to get the QModelIndex index of the cell that was right-clicked?
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
app = QApplication([])
class Dialog(QDialog):
def __init__(self, parent=None):
super(Dialog, self).__init__(parent)
self.setLayout(QVBoxLayout())
self.view = QTableView(self)
self.view.setSelectionBehavior(QTableWidget.SelectRows)
self.view.setContextMenuPolicy(Qt.CustomContextMenu)
self.view.customContextMenuRequested.connect(self.onRightClick)
self.view.clicked.connect(self.onLeftClick)
self.view.setModel(QStandardItemModel(4, 4))
for each in [(row, col, QStandardItem('item %s_%s' % (row, col))) for row in range(4) for col in range(4)]:
self.view.model().setItem(*each)
self.layout().addWidget(self.view)
self.resize(500, 250)
self.show()
def onRightClick(self, qPoint):
sender = self.sender()
for index in self.view.selectedIndexes():
print 'onRightClick selected index.row: %s, selected index.column: %s' % (index.row(), index.column())
def onLeftClick(self, index):
print 'onClick index.row: %s, index.row: %s' % (index.row(), index.column())
dialog = Dialog()
app.exec_()
推荐答案
你必须使用 QAbstractScrollArea (QTableView 的 indexAt() 方法代码>):
You have to use the indexAt() method of the QAbstractScrollArea (QTableView):
def onRightClick(self, qPoint):
index = self.view.indexAt(qPoint)
if index.isValid():
print('onClick index.row: %s, index.col: %s' % (index.row(), index.column()))
这篇关于如何获取 QTableView 右键单击索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何获取 QTableView 右键单击索引
基础教程推荐
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
