2011年7月10日
摘要: from PyQt4 import QtCore, QtGuiclass WidgetGallery(QtGui.QDialog): def __init__(self,parent=None): super(WidgetGallery,self).__init__(parent) self.palette = QtGui.QApplication.palette() combo_box = QtGui.QComboBox() combo_box.addItems(QtGui.QStyleFactory.keys()) label = QtGui.QLabel('style') 阅读全文
posted @ 2011-07-10 13:55 eth0 阅读(509) 评论(0) 推荐(0) 编辑