import sys from PyQt4.QtGui import * from PyQt4.QtCore import * class Calculate(QDialog): def __init__(self,parent=None): super(Calculate,self).__init... ...
分类:
Web程序 时间:
2019-02-27 13:21:27
阅读次数:
343
一、了解Python 1、python的创始人是吉多?范罗苏姆(Guido van Rossum)。 2、目前Python的主要应用领域: 云计算(OpenStack)、WEB开发、人工智能、系统运维、金融、图形GUI(PyQT,WxPython,TkInter)等等。 3、Python是一门动态解 ...
分类:
编程语言 时间:
2019-02-26 23:34:57
阅读次数:
256
1解决办法 在setting中——preference 找到qt设置——pyQT工具文件选择更改为: 我的pyuicc5.exe文件在这个目录下 然后右击编译窗口,就成功了。 如果找不到ui文件,在窗口界面下,右击,add new form ...
分类:
其他好文 时间:
2019-02-25 16:35:25
阅读次数:
361
1.定时器 1 import threading 2 3 #定义函数 4 5 def fun_timer(): 6 print('hello timer') #打印输出 7 global timer #定义变量 8 timer = threading.Timer(1,fun_timer) #60秒调 ...
分类:
其他好文 时间:
2019-02-23 18:23:40
阅读次数:
195
wxPython框架虽然成熟稳定,但是相对最近更火的PyQt框架来说,还是显得古老了一些,控件风格不符合现代审美观,因此痞子衡决定学习一下PyQt的用法,感受下PyQt做出来的界面效果到底如何。根据wxPython学习经验,当然首先要从PyQt的可视化GUI构建工具Qt Designer开始下手,因... ...
分类:
其他好文 时间:
2019-02-22 00:44:23
阅读次数:
331
当使用多文档界面功能时,我们是将QMdiArea作为主窗口的中央部件,然后在这个中央部件中,我们可以同时打开很多个子窗口QMdiSubWindow 样式: ...
分类:
其他好文 时间:
2019-02-18 13:02:39
阅读次数:
404
在布局中添加控件用addWidght(),添加布局用addLayout() 垂直布局QVBoxLayout 需要导入 from PyQt5.QtWidgets import QVBoxLayout 水平布局QHBoxLayout 需要 from PyQt5.QtWidgets import QHBo ...
分类:
其他好文 时间:
2019-02-08 14:36:52
阅读次数:
338
import sysfrom PyQt5.QtWidgets import QApplication, QLabelif __name__ == '__main__': app = QApplication(sys.argv) #想要创建应用必须先实例化一个QApplication,并将sys.ar... ...
分类:
其他好文 时间:
2019-02-06 17:11:25
阅读次数:
188
pyqt pyside QPushButton 图标(icon)大小自适应设置 img = QtGui.QImage(r'd:/test.png') pixmap = QtGui.QPixmap(img) fitPixmap = pixmap.scaled(64, 64, QtCore.Qt.Ign ...
分类:
其他好文 时间:
2019-01-23 15:43:26
阅读次数:
676
pyqt pyside QAction 代码中触发 一般如果多个QAction(在同一个 QButtonGroup 中,而且是 checkable 的),不同情况下我们希望其中某个默认checked: action = QtWidgets.QAction() action.activate(QtWi ...
分类:
其他好文 时间:
2019-01-23 14:31:36
阅读次数:
205