2011年7月17日
摘要: from PyQt4 import QtCore, QtGuiclass MainWindow(QtGui.QMainWindow): def __init__(self): super(MainWindow,self).__init__() self.selectedDate = QtCore.QDate.currentDate() self.fontSize = 10 centralWidget = QtGui.QWidget() dateLabel = QtGui.QLabel('date') monthCombo = QtGui.QComboBox() for mont 阅读全文
posted @ 2011-07-17 12:34 eth0 阅读(340) 评论(0) 推荐(0) 编辑