2012年6月20日
摘要: 1 # -*- coding: utf-8 -*- 2 from PyQt4.QtGui import * 3 from PyQt4.QtCore import * 4 import sys 5 6 QTextCodec.setCodecForTr(QTextCodec.codecForName("utf8")) 7 8 class Progess(QDialog): 9 def __init__(self,parent=None):10 super(Progess,self).__init__(parent)11 self.setWindowT... 阅读全文
posted @ 2012-06-20 14:29 Jiang, X. 阅读(761) 评论(0) 推荐(0) 编辑