33 lines
880 B
Python
33 lines
880 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'D:\QGroup_432987409\WoHowLearn\0.M_I_pyqt\partner_625781186\15_Plugins\Plugins\page2\PluginPage2.ui'
|
||
|
#
|
||
|
# Created by: PyQt5 UI code generator 5.10.1
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
||
|
|
||
|
class Ui_Form(object):
|
||
|
def setupUi(self, Form):
|
||
|
Form.setObjectName("Form")
|
||
|
Form.resize(400, 300)
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Form.setWindowTitle(_translate("Form", "Form"))
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
import sys
|
||
|
app = QtWidgets.QApplication(sys.argv)
|
||
|
Form = QtWidgets.QWidget()
|
||
|
ui = Ui_Form()
|
||
|
ui.setupUi(Form)
|
||
|
Form.show()
|
||
|
sys.exit(app.exec_())
|
||
|
|