Advertisement
yankwizera

Ishuli.py(another form i created corresponding to 1 menu ite

Jul 24th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | None | 0 0
  1. from PyQt4 import uic
  2.  
  3. (Ui_Ishuli_Identification, Ishuli_Identification) = uic.loadUiType('Ishuli_Identification.ui')
  4.  
  5. class Ishuli_Identification (Ishuli_Identification):
  6.     """Ishuli_Identification inherits Ishuli_Identification"""
  7.  
  8.     def __init__ (self, parent = None):
  9.         Ishuli_Identification.__init__(self, parent)
  10.         self.ui = Ui_Ishuli_Identification()
  11.         self.ui.setupUi(self)
  12.  
  13.     def __del__ (self):
  14.         self.ui = None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement