摘要: ``` # coding=utf-8 from PyQt4.QtGui import * from PyQt4.QtCore import * import locale class MyQThread(QThread): def __init__(self, parent=None): super(MyQThread, self).__init__(parent) ... 阅读全文
posted @ 2017-03-25 13:50 我的大金金 阅读(144) 评论(0) 推荐(0) 编辑
摘要: ``` # coding=utf-8 from PyQt4.QtGui import * from PyQt4.QtCore import * from MyTableWidget import MyTableWidget from MyQThread import MyQThread import sys class MyQMainWindow(QMainWindow): def _... 阅读全文
posted @ 2017-03-25 13:49 我的大金金 阅读(129) 评论(0) 推荐(0) 编辑
摘要: ``` # coding=utf-8 from PyQt4.QtGui import * from PyQt4.QtCore import * import locale import sys class MyDialog(QDialog): def __init__(self, parent=None): super(MyDialog, self).__init__(p... 阅读全文
posted @ 2017-03-25 00:53 我的大金金 阅读(191) 评论(0) 推荐(0) 编辑