可能是一个愚蠢的菜鸟问题,但这里是(浓缩的例子):
我有一些基本代码来创建QDialog。在实践中这很好用,我有一些东西可以创建Pyqtgraph窗口,加载和绘制数据等等:
import sys
from PyQt4 import QtGui
#class Window(QtGui.QMainWindow):
class Window(QtGui.QDialog):
def __init__(self):
super(Window, self).__init__()
# Button to load data
self.LoadButton = QtGui.QPushButton('Load Data')
# Button connected to `plot` method
self.PlotButton = QtGui.QPushButton('Plot')
# set the layout
layout = QtGui.QVBoxLayout()
layout.addWidget(self.LoadButton)
layout.addWidget(self.PlotButton)
self.setLayout(layout)
self.setGeometry(100,100,500,300)
self.setWindowTitle("UI Testing")
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
main = Window()
main.show()
sys.exit(app.exec_())
但是我想将它创建为QMainWindow(现在只是为了获得最大化,关闭等按钮)但是如果我将类定义更改为:
class Window(QtGui.QMainWindow):
运行代码时,我得到一个空白的主窗口。所以简单的问题是,我需要做什么才能使布局显示在QMainWindow的QDialog中?
最诚挚的问候,
本
答案 0 :(得分:2)
来自doc:
注意:不支持创建没有中央窗口小部件的主窗口。即使它只是占位符,您也必须拥有一个中央窗口小部件。
因此应创建和设置中央窗口小部件:
def __init__(self):
super(Window, self).__init__()
# Button to load data
self.LoadButton = QtGui.QPushButton('Load Data')
# Button connected to `plot` method
self.PlotButton = QtGui.QPushButton('Plot')
# set the layout
layout = QtGui.QVBoxLayout()
layout.addWidget(self.LoadButton)
layout.addWidget(self.PlotButton)
# setup the central widget
centralWidget = QtGui.QWidget(self)
self.setCentralWidget(centralWidget)
centralWidget.setLayout(layout)
self.setGeometry(100,100,500,300)
self.setWindowTitle("UI Testing")