1.自己调用命令行 pyuic4-ocodeFile.py-xyourUIfile.ui2.写一个批处理,每次双击就行了,跟你的源文件放在同一文件夹下 importosforroot,dirs,filesinos.walk('.'):forfileinfiles:iffile.endswith(.....
分类:
其他好文 时间:
2015-04-18 15:56:18
阅读次数:
150
This is a widget that we can see in Nero, K3B, or other CD/DVD burning software.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorial In t...
分类:
其他好文 时间:
2015-04-18 14:30:47
阅读次数:
163
In the following example, we will demonstrate how to drag & drop a button widget.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorialIn t...
分类:
其他好文 时间:
2015-04-18 11:20:24
阅读次数:
142
We begin with drawing some Unicode text on the client area of a window.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorial In this examp...
TheQtGui.QComboBoxis a widget that allows a user to choose from a list of options.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorial Th...
分类:
其他好文 时间:
2015-04-17 21:46:17
阅读次数:
159
TheQtGui.QFontDialogis a dialog widget for selecting a font.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorial In this example, we sele...
分类:
其他好文 时间:
2015-04-17 20:11:19
阅读次数:
129
Sometimes it is convenient to know which widget is the sender of a signal. For this, PyQt4 has thesender()method.#!/usr/bin/python# -*- coding: utf-8 ...
分类:
其他好文 时间:
2015-04-17 20:02:10
阅读次数:
158
heQtGui.QColorDialogprovides a dialog widget for selecting colour values.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorial In this exa...
分类:
其他好文 时间:
2015-04-17 19:59:27
阅读次数:
227
Events in PyQt4 are processed often by reimplementing event handlers.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 tutorial In this example...
分类:
其他好文 时间:
2015-04-17 19:58:42
阅读次数:
179
Widgets can span multiple columns or rows in a grid. In the next example we illustrate this.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode PyQt4 t...
分类:
其他好文 时间:
2015-04-17 19:57:13
阅读次数:
213