pyqt5主页面点击按钮跳出新页面

1 篇文章 0 订阅
from PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton, QLabel
from PyQt5.QtCore import Qt

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

        # 创建主页面中的按钮
        self.button = QPushButton('打开新页面', self)
        self.button.move(50, 50)
        self.button.clicked.connect(self.open_new_window)

        # 标记新页面是否存在
        self.new_window_exists = False

    def open_new_window(self):
        # 创建新页面
        self.new_window = NewWindow(self)
        self.new_window_exists = True
        self.new_window.show()

    def closeEvent(self, event):
        # 如果新页面存在,禁止关闭主页面
        if self.new_window_exists:
            event.ignore()
        else:
            event.accept()

class NewWindow(QMainWindow):
    def __init__(self, parent=None):
        super().__init__(parent)

        # 设置新页面中的窗口大小和标题
        self.setGeometry(100, 100, 300, 200)
        self.setWindowTitle('新页面')

        # 在新页面中添加标签显示其他内容
        self.label = QLabel('这是新页面中的内容', self)
        self.label.setAlignment(Qt.AlignCenter)
        self.label.setGeometry(50, 50, 200, 100)

    def closeEvent(self, event):
        # 标记新页面不存在并关闭新页面
        self.parent().new_window_exists = False
        self.parent().show()
        event.accept()

if __name__ == '__main__':
    app = QApplication([])
    main_window = MainWindow()
    main_window.show()
    app.exec_()

请添加图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值