改良版
# -*- encoding: utf-8 -*-
from PySide6.QtWidgets import QMenu,QApplication,QMainWindow
from PySide6.QtGui import QCursor
from PySide6 import QtCore
import sys
class MainWindow(QMainWindow):
def __init__(self):
super(MainWindow, self).__init__()
self.createContextMenu()
def createContextMenu(self):
'''''
创建右键菜单
'''
# 必须将ContextMenuPolicy设置为Qt.CustomContextMenu
# 否则无法使用customContextMenuRequested信号
self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
self.customContextMenuRequested.connect(self.showContextMenu)
# 创建QMenu
self.contextMenu = QMenu(self)
self.actionA = self.contextMenu.addAction(u'add')
# 将动作与处理函数相关联
# 这里为了简单,将所有action与同一个处理函数相关联,
# 当然也可以将他们分别与不同函数关联,实现不同的功能
self.actionA.triggered.connect(self.actionHandler)
def showContextMenu(self, pos):
'''''
右键点击时调用的函数
'''
# 菜单显示前,将它移动到鼠标点击的位置
self.contextMenu.move(QCursor().pos())
#self.contextMenu.move(QtGui.)
self.contextMenu.show()
def actionHandler(self):
'''''
菜单中的具体action调用的函数
'''
print("hello world")
if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())