码迷,mamicode.com
首页 > 其他好文 > 详细

PyQt5 写一个计算器框架

时间:2015-05-02 09:50:17      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:gui   pyqt   python   windows   

import sys
from PyQt5.QtWidgets import QWidget, QLabel, QApplication, QPushButton, QHBoxLayout, QVBoxLayout, QGridLayout
class Example(QWidget):
    def __init__(self):
        super().__init__()
        self.initUI()
#----------------------------------------------------------

    def initUI(self):
        grid = QGridLayout()
        self.setLayout(grid)
        names = ['C', 'Bck', '王小涛_', '同學',
                 '7', '8', '9', '/',
                '4', '5', '6', '*',
                 '1', '2', '3', '-',
                 '0', '.', '=', '+']
        positions = [(i, j) for i in range(5) for j in range(4)]
        for position, name in zip(positions, names):
            if name == '':
                continue
            button = QPushButton(name)
            grid.addWidget(button, *position)


#------------------------------------------------------------
        self.setGeometry(300, 300, 300, 150)
        self.setWindowTitle('计算器')
        self.show()
#-------------------------------------------------------------
if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit((app.exec_()))
技术分享

转载请注明作者与出处:http://blog.csdn.net/u013511642  王小涛_同學


PyQt5 写一个计算器框架

标签:gui   pyqt   python   windows   

原文地址:http://blog.csdn.net/u013511642/article/details/45420849

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!