gpt4 book ai didi

python - 单击按钮时打开一个新窗口 || PyQt5

转载 作者:行者123 更新时间:2023-12-04 12:44:35 25 4
gpt4 key购买 nike

我知道这个问题已经被问过多次了。但是我无法理解现有的例子。我有一个代码可以创建一个带有名为“开始”的按钮的窗口。我希望应用程序在单击“开始”按钮时关闭当前窗口并打开一个新窗口。新窗口必须是空白窗口。

非常感谢任何帮助。

代码如下:

import sys
from PyQt5 import QtGui
from PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton,
QToolTip, QMessageBox, QLabel


class Window(QMainWindow):
def __init__(self):
super().__init__()

self.title = "First Window"
self.top = 100
self.left = 100
self.width = 680
self.height = 500

self.pushButton = QPushButton("Start", self)
self.pushButton.move(275, 200)
self.pushButton.setToolTip("<h3>Start the Session</h3>")
self.main_window()

def main_window(self):
self.label = QLabel("Manager", self)
self.label.move(285, 175)
self.setWindowTitle(self.title)
self.setGeometry(self.top, self.left, self.width, self.height)
self.show()


if __name__ == "__main__":
app = QApplication(sys.argv)
window = Window()
sys.exit(app.exec())

最佳答案

试一试:

import sys
from PyQt5 import QtGui
from PyQt5.QtWidgets import (QApplication, QMainWindow, QPushButton,
QToolTip, QMessageBox, QLabel)

class Window2(QMainWindow): # <===
def __init__(self):
super().__init__()
self.setWindowTitle("Window22222")

class Window(QMainWindow):
def __init__(self):
super().__init__()

self.title = "First Window"
self.top = 100
self.left = 100
self.width = 680
self.height = 500

self.pushButton = QPushButton("Start", self)
self.pushButton.move(275, 200)
self.pushButton.setToolTip("<h3>Start the Session</h3>")

self.pushButton.clicked.connect(self.window2) # <===

self.main_window()

def main_window(self):
self.label = QLabel("Manager", self)
self.label.move(285, 175)
self.setWindowTitle(self.title)
self.setGeometry(self.top, self.left, self.width, self.height)
self.show()

def window2(self): # <===
self.w = Window2()
self.w.show()
self.hide()

if __name__ == "__main__":
app = QApplication(sys.argv)
window = Window()
sys.exit(app.exec())

关于python - 单击按钮时打开一个新窗口 || PyQt5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53225320/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com