第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Python PyQt 中保持窗口打開(kāi)

如何在 Python PyQt 中保持窗口打開(kāi)

飲歌長(zhǎng)嘯 2023-03-16 17:03:21
我正在嘗試構(gòu)建一個(gè)基于 python 的軟件。(基于 PYQT 的軟件)問(wèn)題:我的第二個(gè)窗口在打開(kāi)后立即關(guān)閉。問(wèn)題:我的代碼有問(wèn)題嗎?我如何解決它?注意:?jiǎn)螕糸_(kāi)始按鈕時(shí)會(huì)打開(kāi)第二個(gè)窗口。這是我的代碼:class MainWindow(QMainWindow):    switch_window=pyqtSignal(str)    def __init__(self):        super().__init__()        self.initUI()    def initUI(self):        #Initialize        self.setGeometry(1000, 300, 1200, 800)        self.setWindowTitle('Sensorlyze')        self.setWindowIcon(QIcon('biosensor.jpg'))        icon = QIcon('biosensor.jpg')        # Add Text        l1= QLabel("Welcome to SensorLyze",self)        l1.move(25, 350)        # l1.setWordWrap(True)        l1.setFont(QFont('Calibri',15))        l1.adjustSize()        l2 = QLabel("A software to simply sensor analytics", self)        l2.move(25, 400)        l2.setFont(QFont('Calibri', 10))        l2.adjustSize()        #Add Buttons        button1 = QPushButton('Start',self)        button1.resize(button1.sizeHint())        button1.clicked.connect(start_clicked)        button1.move(60, 450)        button2 = QPushButton('Exit', self)        button2.resize(button2.sizeHint())        button2.clicked.connect(exit_clicked)        button2.move(240, 450)stylesheet = """    QMainWindow {        background-image: url("C:/Users/admin/Desktop/Sensorlyze/biosensor.jpg");         background-repeat: no-repeat;         background-position: center;    }"""# def switch(self):#         self.switch_window.emit(self.line_edit.text())def start_clicked():   window=QMainWindow()   window.setGeometry(300, 500, 500, 500)   window.setWindowTitle('Hello')   window.show()   win.hide()def exit_clicked():    msgBox=QMessageBox()    msgBox.setIcon(QMessageBox.Information)    msgBox.setText("Are you sure you want to exit?")    msgBox.setWindowTitle("Exit Sensorlyze")    msgBox.setStandardButtons(QMessageBox.Ok|QMessageBox.Cancel)    msgBox.buttonClicked.connect(msgButtonClick)    returnValue = msgBox.exec()    if returnValue==QMessageBox.Ok:        exit()def msgButtonClick(i):    print("Buttonclickedis:",i.text())我在這里錯(cuò)過(guò)了什么嗎?任何幫助...
查看完整描述

1 回答

?
千巷貓影

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

Alec 回答了這個(gè)問(wèn)題,但如果您仍然不清楚,這里是更正后的代碼。


import sys

from PyQt5.QtWidgets import QMainWindow, QLabel, QPushButton, QMessageBox, QApplication

from PyQt5.QtCore import pyqtSignal, pyqtSlot

from PyQt5.QtGui import QIcon, QFont

class MainWindow(QMainWindow):

    switch_window=pyqtSignal(str)

    def __init__(self):

        super().__init__()

        self.initUI()


    def initUI(self):

        #Initialize

        self.setGeometry(1000, 300, 1200, 800)

        self.setWindowTitle('Sensorlyze')

        self.setWindowIcon(QIcon('biosensor.jpg'))

        icon = QIcon('biosensor.jpg')


        # Add Text

        l1= QLabel("Welcome to SensorLyze",self)

        l1.move(25, 350)

        # l1.setWordWrap(True)

        l1.setFont(QFont('Calibri',15))

        l1.adjustSize()

        l2 = QLabel("A software to simply sensor analytics", self)

        l2.move(25, 400)

        l2.setFont(QFont('Calibri', 10))

        l2.adjustSize()


        #Add Buttons

        button1 = QPushButton('Start',self)

        button1.resize(button1.sizeHint())

        button1.clicked.connect(self.start_clicked)

        button1.move(60, 450)

        button2 = QPushButton('Exit', self)

        button2.resize(button2.sizeHint())

        button2.clicked.connect(self.exit_clicked)

        button2.move(240, 450)


    def start_clicked(self):

        self.window = QMainWindow()

        self.window.setGeometry(300, 500, 500, 500)

        self.window.setWindowTitle('Hello')

        self.window.show()

        # win.hide()


    def exit_clicked(self):

        msgBox = QMessageBox()

        msgBox.setIcon(QMessageBox.Information)

        msgBox.setText("Are you sure you want to exit?")

        msgBox.setWindowTitle("Exit Sensorlyze")

        msgBox.setStandardButtons(QMessageBox.Ok | QMessageBox.Cancel)

        msgBox.buttonClicked.connect(self.msgButtonClick)

        returnValue = msgBox.exec()


        if returnValue == QMessageBox.Ok:

            exit()


    def msgButtonClick(self, i):

        print("Buttonclickedis:", i.text())



stylesheet = """

    QMainWindow {

    background-image: url("C:/Users/admin/Desktop/Sensorlyze/biosensor.jpg"); 

    background-repeat: no-repeat; 

    background-position: center;

    }

"""


# def switch(self):

#         self.switch_window.emit(self.line_edit.text())


def main():

    app = QApplication(sys.argv)

    app.setStyleSheet(stylesheet)     # <---

    win=MainWindow()

    win.show()

    sys.exit(app.exec_())


if __name__ == '__main__':

    main()



查看完整回答
反對(duì) 回復(fù) 2023-03-16
  • 1 回答
  • 0 關(guān)注
  • 176 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)