Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.12 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. # Form implementation generated from reading ui file 'jota.ui'
  4. #
  5. # Created: Mon Nov  1 09:38:16 2010
  6. #      by: PyQt4 UI code generator 4.7.4
  7. #
  8. # WARNING! All changes made in this file will be lost!
  9.  
  10. from PyQt4 import QtCore, QtGui
  11.  
  12. class Ui_Dialog(object):
  13.     def setupUi(self, Dialog):
  14.         Dialog.setObjectName("Dialog")
  15.         Dialog.resize(710, 431)
  16.         self.pushButton = QtGui.QPushButton(Dialog)
  17.         self.pushButton.setGeometry(QtCore.QRect(300, 350, 98, 27))
  18.         self.pushButton.setObjectName("pushButton")
  19.  
  20.         self.retranslateUi(Dialog)
  21.         QtCore.QMetaObject.connectSlotsByName(Dialog)
  22.  
  23.     def retranslateUi(self, Dialog):
  24.         Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Estado de los Servidores", None, QtGui.QApplication.UnicodeUTF8))
  25.         self.pushButton.setText(QtGui.QApplication.translate("Dialog", "Comprobar", None, QtGui.QApplication.UnicodeUTF8))
  26. if __name__ == "__main__":
  27.     import sys
  28.     app = QtGui.QApplication(sys.argv)
  29.     Dialog = QtGui.QDialog()
  30.     ui = Ui_Dialog()
  31.     Dialog.show()
  32.     sys.exit(app.exec_())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement