第一个程序

2017-05-21  本文已影响0人  郑司令
import sys
from PyQt5.QtWidgets import QApplication, QWidget

if __name__ == '__main__':
    app = QApplication(sys.argv)

    w = QWidget()

    w.resize(250, 150)
    w.move(300, 300)
    w.setWindowTitle('Simple')

    w.show()

    sys.exit(app.exec_())

首先是import,sys和PyQt5.QtWidgets

每个PyQt5应用都必须创建一个应用对象app:

    app = QApplication(sys.argv)

QWidget空间是一个用户界面的基本空间:

    w = QWidget()

设置窗口位置、大小和标题:

    w.resize(250, 150)
    w.move(300, 300)
    w.setWindowTitle('Simple')

展示窗口:

    w.show()

确保主循环安全退出:

    sys.exit(app.exec_())

窗口图标程序:

import sys
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtGui import QIcon


class Example(QWidget):

    def __init__(self):
        super().__init__()

        self.initUI()###创建一个GUI


    def initUI(self):

        self.setGeometry(300, 300, 300, 220)###resize()和move()的合体,
                                            ###前两个参数是位置,后两个参数是大小。
        self.setWindowTitle('Icon')###设置标题
        self.setWindowIcon(QIcon('web.png'))       ##载入图片 

        self.show() ##展示窗口


if __name__ == '__main__':

    app = QApplication(sys.argv)#创建app
    ex = Example()#创建窗口
    sys.exit(app.exec_())#退出程序

提示框:

import sys
from PyQt5.QtWidgets import (QWidget, QToolTip, 
    QPushButton, QApplication)
from PyQt5.QtGui import QFont    


class Example(QWidget):

    def __init__(self):
        super().__init__()

        self.initUI()##创建GUI  


    def initUI(self):

        QToolTip.setFont(QFont('SansSerif', 10))##创建提示框的字体

        self.setToolTip('This is a <b>QWidget</b> widget')##设置提示框的内容

        btn = QPushButton('Button', self)##创建一个按钮
        btn.setToolTip('This is a <b>QPushButton</b> widget')##按钮提示框链接
        btn.resize(btn.sizeHint())##设置按钮大小,sizeHint()为默认大小
        btn.move(50, 50)       ##设置按钮位置

        self.setGeometry(300, 300, 300, 200)##设置窗口位置、大小
        self.setWindowTitle('Tooltips')    #设置窗口标题
        self.show()#展示窗口


if __name__ == '__main__':

    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

创建退出按钮:

import sys
from PyQt5.QtWidgets import QWidget, QPushButton, QApplication
from PyQt5.QtCore import QCoreApplication


class Example(QWidget):

    def __init__(self):
        super().__init__()

        self.initUI()


    def initUI(self):               

        qbtn = QPushButton('Quit', self)##创建一个按钮
        qbtn.clicked.connect(QCoreApplication.instance().quit)#按钮链接行为;
                                          ##QCoreApplication.instance().quit为退出窗口
        qbtn.resize(qbtn.sizeHint())
        qbtn.move(50, 50)       

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Quit button')    
        self.show()


if __name__ == '__main__':

    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

消息盒子:

import sys
from PyQt5.QtWidgets import QWidget, QMessageBox, QApplication


class Example(QWidget):

    def __init__(self):
        super().__init__()

        self.initUI()


    def initUI(self):               

        self.setGeometry(300, 300, 250, 150)        
        self.setWindowTitle('Message box')    
        self.show()


    def closeEvent(self, event):

        reply = QMessageBox.question(self, 'Message',
            "Are you sure to quit?", QMessageBox.Yes | 
            QMessageBox.No, QMessageBox.No)##消息盒子窗口

        if reply == QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()        


if __name__ == '__main__':

    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

以上,总共学习了:创建窗口,为窗口添加按钮,为窗口添加图标,点击按钮退出窗口,加入提示框,创建消息弹窗。接下来,我们要自己整合一个小程序,做到:创建一个窗口,在窗口中创建一个退出按钮,并为这个按钮创建提示框;点击按钮时,弹出消息弹窗,并退出程序。我们命名为:FirstPyQtProgram



import sys
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtGui import QIcon,QFont
from PyQt5.QtWidgets import QWidget, QToolTip, QPushButton, QMessageBox, QApplication
from PyQt5.QtCore import QCoreApplication

##继承类

class Example(QWidget):

    def __init__(self):
        super().__init__()

        self.initUI()


    def initUI(self):

        ##创建窗口:
        self.setGeometry(300, 300, 300, 220)
        self.setWindowTitle('FirstPyQtProgram')

        ##添加icon图标:
        self.setWindowIcon(QIcon('web.png'))

        ##创建quit按钮:
        qb = QPushButton('Quit', self)##创建一个按钮
        qb.resize(qb.sizeHint())
        qb.move(50, 50)
        
        ##链接quit行为:
        qb.clicked.connect(QCoreApplication.instance().quit)

        ##创建按钮提示框:
        qb.setToolTip('This is a <b>QPushButton</b> widget')

        self.show()

        
    def closeEvent(self, event):

        reply = QMessageBox.question(self, 'Message',
                                     "Are you sure to quit?", QMessageBox.Yes |
                                     QMessageBox.No, QMessageBox.No)

        if reply == QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()  
        

        self.show()


if __name__ == '__main__':


    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

    

上一篇下一篇

猜你喜欢

热点阅读