Python2.7+PyQt4+eric4练习1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python2.7+PyQt4+eric4练习1相关的知识,希望对你有一定的参考价值。
今天根据网路上的教程刚刚安装了 PyQt4和eric4,现在就练习一些基础的程序,来大致理解一下我们的PyQt4中包含的主要类库的基础功能,
安装成功后,我们试试看用PyQt4xianshi 显示一个带有我们自定义的图标的窗口
该程序段参考http://blog.csdn.net/bigbennyguo/article/details/50676803
先制作一个自己的icon,保存在随便的一个路径下,
1 # -*- coding: cp936 -*- 2 3 """ we create a simple window in PyQt4""" 4 import sys 5 from PyQt4 import QtGui as qtgui 6 7 class Example(qtgui.QWidget): 8 def __init__(self): 9 super(Example,self).__init__() 10 self.initUI() 11 def initUI(self): 12 self.setGeometry(900,500,250,150) 13 self.setWindowTitle(‘Icon‘) 14 self.setWindowIcon(qtgui.QIcon(‘F:\\personal\\PythonLearning\\icon1.png‘))#此处调用自制icon所在的路径及文件名 15 self.show() 16 17 def main(): 18 app = qtgui.QApplication(sys.argv) 19 20 ex=Example() 21 22 sys.exit(app.exec_()) 23 24 25 if __name__==‘__main__‘: 26 main()
运行后显示的窗口如下图所示
标题栏左侧即为我们自制的icon啦~
以上是关于Python2.7+PyQt4+eric4练习1的主要内容,如果未能解决你的问题,请参考以下文章
Pyqt4+Eric6+python2.7.13(windows)
cx_Freeze: 'The system cannot find the file specified' during build [win10] [PyQt4] [python2.7] 错误