class AppWindow(QtGui.QMainWindow):
def __init__(self, parent=None):
super(AppWindow, self).__init__(parent)
self.setGeometry(x, y, w, h)
当此窗口打开时,窗口的客户区域将精确覆盖(x,y,w,h)。
但是整个窗口,包括边框,标题和菜单栏,覆盖的区域更大。
我希望我的初始整体窗口完全覆盖(x,y,w,h),而不考虑客户区域大小。我该怎么做?