35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'ui/project/project_panel.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.pushButton = QtWidgets.QPushButton(Form)
|
||
|
self.pushButton.setGeometry(QtCore.QRect(90, 40, 84, 34))
|
||
|
self.pushButton.setObjectName("pushButton")
|
||
|
self.checkBox = QtWidgets.QCheckBox(Form)
|
||
|
self.checkBox.setGeometry(QtCore.QRect(80, 150, 86, 22))
|
||
|
self.checkBox.setObjectName("checkBox")
|
||
|
self.checkBox_2 = QtWidgets.QCheckBox(Form)
|
||
|
self.checkBox_2.setGeometry(QtCore.QRect(80, 180, 86, 22))
|
||
|
self.checkBox_2.setObjectName("checkBox_2")
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Form.setWindowTitle(_translate("Form", "Form"))
|
||
|
self.pushButton.setText(_translate("Form", "PushButton"))
|
||
|
self.checkBox.setText(_translate("Form", "CheckBox"))
|
||
|
self.checkBox_2.setText(_translate("Form", "CheckBox"))
|
||
|
|