调用 setParent 时 QMenu 显示不正确

QMenu displays incorrectly when setParent called

我想创建一个函数来构建可以动态添加到 window 的菜单栏的上下文菜单。考虑以下用于添加简单 QMenu 的最小示例:

from PyQt5 import QtWidgets

class MainWindow(QtWidgets.QMainWindow):
    def __init__(self, *args, **kwargs):
        super(MainWindow, self).__init__(*args, **kwargs)
        menu = QtWidgets.QMenu('Menu', parent=self)
        act1 = menu.addAction('Action 1')
        act2 = menu.addAction('Action 2')
        self.menuBar().addMenu(menu)

app = QtWidgets.QApplication([])
window = MainWindow()
window.show()
app.exec_()

这按预期工作。请注意,需要为 QMenu 设置父项才能显示。


现在,如果我将菜单代码分解成它自己的函数并明确设置父项,我会得到以下结果。 这是怎么回事?

from PyQt5 import QtWidgets

def createMenu():
    menu = QtWidgets.QMenu('Menu')
    act1 = menu.addAction('Action 1')
    act2 = menu.addAction('Action 2')
    return menu

class MainWindow(QtWidgets.QMainWindow):
    def __init__(self, *args, **kwargs):
        super(MainWindow, self).__init__(*args, **kwargs)
        menu = createMenu()
        menu.setParent(self)
        self.menuBar().addMenu(menu)

app = QtWidgets.QApplication([])
window = MainWindow()
window.show()
app.exec_()

您调用 setParent 的方式会重置 window 标志,因此请改为:

    menu.setParent(self, menu.windowFlags())