当前位置: 首页 > 图灵资讯 > 行业资讯> python PyQt事件处理实现上下文菜单

python PyQt事件处理实现上下文菜单

来源:图灵python
时间: 2024-06-26 21:25:46

我们已经介绍了一个简单的方法来创建上下文菜单。本文带来的方法有点困难,但更容易控制和呼叫。

1、QMainWindow覆盖事件处理程序。

2、创建QMenu传输小部件(上下文小部件)作为父亲的对象。

3、用动作填充菜单对象。

4、使用.globalPos()作为参数启动菜单的对象。

实例

classWindow(QMainWindow):
#Snip...
defcontextMenuEvent(self,event):
#Creatingamenuobjectwiththecentralwidgetasparent
menu=QMenu(self.centralWidget)
#Populatingthemenuwithactions
menu.addAction(self.newAction)
menu.addAction(self.openAction)
menu.addAction(self.saveAction)
menu.addAction(self.copyAction)
menu.addAction(self.pasteAction)
menu.addAction(self.cutAction)
#Launchingthemenu
menu.exec(event.globalPos())

以上是python PyQT事件处理实现上下文菜单的方法,希望对大家有所帮助。更多Python学习指导:基础教程python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。