码迷,mamicode.com
首页 >  
搜索关键字:pyqt5    ( 590个结果
配置pyqt5环境 for python3.4 on Linux Mint 17.1
1.安装QT 配置QT PATH 在/etc/profile文件中追加export QTDIR=/usr/local/Qt5.4.2/5.4/gcc_64export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${QTDIR}/libexport PATH=${Q...
分类:编程语言   时间:2015-06-23 21:20:28    阅读次数:174
[OS X]PyQt5的安装过程
1. 下载并安装Qt[2015年6月:下载地址]在安装的过程中,会选择安装路径。默认路径为/Users/ijkcherry/Qt5.4.2/。2. 下载并安装SIP[2015年6月:下载地址,安装文档]解压下载的源码包:tar -xvf sip-4.16.7.tar.gz进入目录:cd sip-4....
分类:其他好文   时间:2015-06-09 09:44:16    阅读次数:215
Py3+PyQt5+Eric6:学习记录之第一天:点击按钮获取文本框的值并输出。
一、使用qt designer拖拽界面。使用qtdesigner拖拽界面:如图左侧导航栏,1:Sources,2:Forms,3:Resouces1:代码,2:Qt Designer的拖拽界面的代码,xml形式的 3:暂未使用,猜测用来放置一些图片、音频、视频之类的。在2:Forms中右键点击,然后...
分类:其他好文   时间:2015-06-02 17:02:43    阅读次数:2773
PyQt5资料
http://bbs.fishc.com/thread-59816-1-1.htmlhttps://pypi.python.org/pypi/PyQt5/http://www.thehackeruniversity.com/2014/01/23/pyqt5-beginner-tutorial/htt...
分类:其他好文   时间:2015-05-31 18:13:10    阅读次数:149
pythonQt的安装和使用
安装pythonQt OS: Windows 7 64bits python version: 3.4 PyQt5下载 Download Note: 1. 注意选择正确的Python版本和系统位数。 2. 安装PyQt并不需要一些文章中提到的先安装sip和Qt的过程,因为在安装文件中已经包括。 测试是否安装成功 import PyQt5 没报错说明安装成功...
分类:编程语言   时间:2015-05-26 01:38:01    阅读次数:778
centos qt5,PyQt5 installation
一、SIPhttp://www.riverbankcomputing.com/software/sip/download二、Centos6.5 qt 安装1,centos linux系统必须预先以安装x Server(KDE or GNOME)2,wget http://download.qt-pr...
分类:其他好文   时间:2015-05-05 01:16:06    阅读次数:842
PyQt5 写一个计算器框架
import sys from PyQt5.QtWidgets import QWidget, QLabel, QApplication, QPushButton, QHBoxLayout, QVBoxLayout, QGridLayout class Example(QWidget): def __init__(self): super().__init__()...
分类:其他好文   时间:2015-05-02 09:50:17    阅读次数:266
PyQt5 来写一个评论框
import sys from PyQt5.QtWidgets import QWidget, QLabel, QApplication, QLineEdit, QTextEdit, QGridLayout class Example(QWidget): def __init__(self): super().__init__() self.initUI()...
分类:其他好文   时间:2015-05-02 09:49:28    阅读次数:213
PyQt5 消息框
import sys from PyQt5.QtWidgets import QApplication, QWidget, QMessageBox class Example(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): ...
分类:其他好文   时间:2015-04-29 10:12:21    阅读次数:215
PyQt5 窗口定于屏幕中心
import sys from PyQt5.QtWidgets import QApplication, QWidget, QDesktopWidget class Example(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): ...
分类:其他好文   时间:2015-04-29 10:09:32    阅读次数:154
590条   上一页 1 ... 53 54 55 56 57 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!