PyQt4中的第一个窗口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyQt4中的第一个窗口相关的知识,希望对你有一定的参考价值。
from PyQt4 import QtGui, QtCore import sys class Window(QtGui.QMainWindow): def __init__(self): QtGui.QMainWindow.__init__(self) #import all widgets and core functions self.resize(200,200) self.setWindowTitle('First Window') app = QtGui.QApplication(sys.argv) main = Window() main.show() sys.exit(app.exec_()) #freeze screen
以上是关于PyQt4中的第一个窗口的主要内容,如果未能解决你的问题,请参考以下文章
PyQt4 - clicked.connect 记住以前的连接?