我试图显示一个以父级为中心的 QMessageBox,但它似乎显示在其父级的父级之上。以下代码在 2x2 网格中生成 4 个按钮。单击按钮时,我希望相应的消息框以单击的按钮(即父级)为中心显示。但是,它始终显示在包含小部件的中间。
from PyQt4 import QtCore, QtGui
class ClickHandler(QtCore.QObject):
def __init__(self, parent=None):
super(ClickHandler, self).__init__(parent)
def onClicked(self):
sender = self.sender()
print sender
QtGui.QMessageBox.information(sender, 'onClicked', 'Using static method')
mb = QtGui.QMessageBox(sender)
mb.setWindowTitle('onClicked')
mb.setText('Using object and exec')
mb.exec_()
if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
ch = ClickHandler()
layout = QtGui.QGridLayout()
for i in xrange(4):
pb = QtGui.QPushButton('button %d' % i)
pb.clicked.connect(ch.onClicked)
layout.addWidget(pb, i // 2, i % 2)
w = QtGui.QWidget()
w.setLayout(layout)
w.resize(600, 600)
w.show()
sys.exit(app.exec_())
根据 QMessageBox 文档:
parent 被传递给 QDialog 构造函数
根据 QDialog 文档:
如果它有父级,则其默认位置位于父级的顶部
不知道我做错了什么或我错过了什么。任何帮助,将不胜感激。谢谢。