我有一个元素,editorBox
它是 PyQt5 元素类型QPlainTextEdit
。我的目标是在Shift + Return
按下热键时调用一个函数,我使用这个函数的目标是它还将文本插入到 editorBox 元素中(这不是我强调的部分,它很容易做到.insertPlainText()
方法)。
我已经完成了搜索,我能找到的最接近的结果是像这样使用QShortcut
&QKeySequence
配对:
# Initialize the QShortcut class
self.keybindShiftEnter = QShortcut(QKeySequence("Shift+Return"), self)
# Connect the shortcut event to a lambda which executes my function
self.keybindShiftEnter.activated.connect(lambda: self.editorBox.insertPlainText("my text to insert"))
为了澄清起见,我尝试在QKeySequence
构造函数中使用其他字符,例如Ctrl+b
,并且我已经成功了。奇怪的是,只有组合Shift+Return
对我不起作用。
我已经分析了与我的错误有关的问题。我看过的一些帖子: