我正在使用 Ubuntu 16.04 和 Python 2.7。我用 PyQt 创建了一个对话框,但是如何设置一个QDialog
对象的位置呢?我试过self.move(x,y)
了,但它不动,仍然停留在原来的位置。
这是我的例子:
class MainWindow(QMainWindow, WindowMixin):
def __init__(self):
super(MainWindow, self).__init__()
self.myDialog = MyDialog(parent=self)
def createMyDialog(self):
self.myDialog.popUp(x=self.geometry().x(), y=self.geometry().y(), width=self.geometry().width(), height=self.geometry().height())
class MyDialog(QDialog):
def __init__(self, parent=None):
super(LabelDialog, self).__init__(parent)
def popUp(self, x="", y="", width="", height=""):
if (x!="") and (y!="") and (width!="") and (height!=""):
# self.resize(width/6, 20)
self.move(0, 0)
我使用该createMyDialog
函数来创建模态对话框。任何人都可以提供任何建议吗?