gpt4 book ai didi

Python PyQt5 - QEvent Keypress 执行两次

转载 作者:行者123 更新时间:2023-12-01 02:33:20 26 4
gpt4 key购买 nike

我有这个简单的代码,当 ESC 键按下 PRINTS 时,它似乎执行“两次”而不是仅触发一次。 Python 3.6.2 x86 + PyQt 5.9

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys

from PyQt5.QtWidgets import *
from PyQt5.QtCore import Qt
from PyQt5 import QtCore, QtGui, QtWidgets


class MainWindow(QtWidgets.QWidget):
def __init__(self, parent=None):
super(MainWindow, self).__init__(parent)
qApp.installEventFilter(self) #keyboard control

def eventFilter(self, obj, event):
if (event.type() == QtCore.QEvent.KeyPress):
key = event.key()

if key == Qt.Key_Escape:
print("Escape key")

return super(MainWindow, self).eventFilter(obj, event)


if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())

最佳答案

安装在QApplication上的事件过滤器将接收应用程序中所有对象的事件。因此,您需要检查 obj 参数以过滤掉您不感兴趣的对象中的事件。

在您的示例中,您可能只需要主窗口中的事件。所以你可以像这样修复它:

def eventFilter(self, obj, event):
if (event.type() == QtCore.QEvent.KeyPress and obj is self):
...

关于Python PyQt5 - QEvent Keypress 执行两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46543792/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com