2011年7月9日
摘要: // from pyqt_examplesfrom PyQt4 import QtCore, QtGuiclass WigglyWidget(QtGui.QWidget): def __init__(self, parent=None): super(WigglyWidget, self).__init__(parent) self.setBackgroundRole(QtGui.QPalette.Midlight) self.setAutoFillBackground(True) newFont = self.font() newFont.setPointSize(newFont.point 阅读全文
posted @ 2011-07-09 11:39 eth0 阅读(246) 评论(0) 推荐(0) 编辑