diff --git a/PyQt/runUI.py b/PyQt/runUI.py new file mode 100644 index 0000000..261e456 --- /dev/null +++ b/PyQt/runUI.py @@ -0,0 +1,13 @@ +from PyQt5 import QtWidgets, uic +import sys + + +class NetworkUi(QtWidgets.QMainWindow): + def __init__(self): + super(NetworkUi,self).__init__() #Call the inherited classes __init__ method + uic.loadUi('test.ui', self) + self.show() + +app = QtWidgets.QApplication(sys.argv) +window = NetworkUi() +app.exec_() \ No newline at end of file