【Python】GUI 练习1--利率计算器
摘要:
import sysfrom PyQt4.QtCore import *from PyQt4.QtGui import *class Form(QDialog): def __init__(self,parent=None): super(Form,self).__init__(parent) prinlabel=QLabel('Principal: ') ratelabel=QLabel('Rate: ') yearlabel=QLabel('Years: ') amountlabel... 阅读全文
posted @ 2013-09-23 16:05 colipso 阅读(874) 评论(0) 推荐(1) 编辑