socek

Untitled

May 29th, 2013
982
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. import sys
  4. from PySide import QtGui
  5.  
  6. app = QtGui.QApplication(sys.argv)
  7.  
  8. wid = QtGui.QWidget()
  9. wid.resize(250, 150)
  10. wid.setWindowTitle('Simple')
  11. wid.show()
  12.  
  13. sys.exit(app.exec_())
Advertisement
Add Comment
Please, Sign In to add comment