我正在创建一个最初显示登录和注册按钮的应用程序。 点击登录后,我想显示另一个屏幕(或对话框),允许用户输入用户名和密码。
我想隐藏第一个对话框,当第二个对话框出现但无法做到时。(就像我们在facebook messenger中一样)
我们可以通过连接到Qt dsigner本身的登录按钮的点击信号来打开一个新的对话框吗?
我在Qt设计器中设计了第一个屏幕,将.ui文件转换为.py然后将其导入main.py
main.py
import sys
from Pyside.QtGui import *
from Pyside.QtCore import *
from firstscreen import Ui_Dialog
class MainDialog(QDialog, Ui_Dialog):
def __init__(self, parent=None):
super(MainDialog, self).__init__(parent)
self.setupUi(self)
self.Login.clicked.connect(self.showsecondscreen)
def showsecondscreen(self):
newScreen = QDialog(self)
newScreen.show(self)
app = QApplication(sys.argv)
form = MainDialog()
form.show()
app.exec_()
firstscreen.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>322</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>My App</string>
</property>
<widget class="QPushButton" name="Login">
<property name="geometry">
<rect>
<x>110</x>
<y>110</y>
<width>98</width>
<height>27</height>
</rect>
</property>
<property name="text">
<string>Login</string>
</property>
</widget>
<widget class="QPushButton" name="Signup">
<property name="geometry">
<rect>
<x>110</x>
<y>150</y>
<width>98</width>
<height>27</height>
</rect>
</property>
<property name="text">
<string>Signup</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
答案 0 :(得分:0)
你试过吗
def showsecondscreen(self):
self.hide(self)
newScreen = QDialog(self)
newScreen.show(self)
无论如何,当您尝试将Qt-Application-init-pattern与对话框一起使用时,设计并不是很好。这将使类MainDialog在主事件循环中运行 - 因此在它关闭后,您的应用程序将关闭。所以只能隐藏作品。
通常你会用exec()执行一个QDialog并使用返回的结果进行进一步处理。
如果您计划在登录后显示Mainwindow,最好将“MainDialog”类重命名为“LoginDialog”,然后创建真实应用程序的主窗口(也可以将该类称为“MainWindow”)。然后像这样更改启动:
app = QApplication(sys.argv)
login = LoginDialog()
if(login.exec() == LOGGED_IN_SUCCESSFULLY_RETURN_VALUE)
form = MainWindow()
form.show()
app.exec_()
更新:如果这将成为一系列对话框,如向导(或MacOSX上调用的“助手”),那么您可能希望从QWizard
派生。