Created
July 21, 2019 03:21
-
-
Save l337quez/664afe5926386304094126c2b5256e80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# #!/usr/bin/python | |
#Importamos las clases de PySide | |
import sys | |
from PySide import QtCore,QtGui | |
#Creamos una aplicacion Qt | |
app = QtGui.QApplication(sys.argv) | |
mainwindow= QtGui.QWidget() | |
mainwindow.resize(600,407) | |
mainwindow.setWindowTitle("GNU Pytronics") | |
mainwindow.setWindowIcon(QtGui.QIcon('pytronics.png')) | |
mainwindow.show() | |
sys.exit(app.exec_()) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment