# Form implementation generated from reading ui file 'main.ui' # # Created by: PyQt6 UI code generator 6.5.1 # # WARNING: Any manual changes made to this file will be lost when pyuic6 is # run again. Do not edit this file unless you know what you are doing. from PyQt6 import QtCore, QtWidgets from PyQt6.QtGui import QIcon class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(766, 522) Form.setWindowIcon(QIcon(':/icon/1.ico')) Form.setLayoutDirection(QtCore.Qt.LayoutDirection.LeftToRight) self.gridLayout_2 = QtWidgets.QGridLayout(Form) self.gridLayout_2.setObjectName("gridLayout_2") self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.label_2 = QtWidgets.QLabel(parent=Form) self.label_2.setObjectName("label_2") self.horizontalLayout_2.addWidget(self.label_2) self.lineEdit = QtWidgets.QLineEdit(parent=Form) self.lineEdit.setObjectName("lineEdit") self.horizontalLayout_2.addWidget(self.lineEdit) self.label_3 = QtWidgets.QLabel(parent=Form) self.label_3.setObjectName("label_3") self.horizontalLayout_2.addWidget(self.label_3) self.verticalLayout.addLayout(self.horizontalLayout_2) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.checkBox = QtWidgets.QCheckBox(parent=Form) self.checkBox.setObjectName("checkBox") self.horizontalLayout.addWidget(self.checkBox) self.checkBox_5 = QtWidgets.QCheckBox(parent=Form) self.checkBox_5.setObjectName("checkBox_5") self.horizontalLayout.addWidget(self.checkBox_5) self.checkBox_4 = QtWidgets.QCheckBox(parent=Form) self.checkBox_4.setObjectName("checkBox_4") self.horizontalLayout.addWidget(self.checkBox_4) self.checkBox_3 = QtWidgets.QCheckBox(parent=Form) self.checkBox_3.setObjectName("checkBox_3") self.horizontalLayout.addWidget(self.checkBox_3) self.checkBox_2 = QtWidgets.QCheckBox(parent=Form) self.checkBox_2.setObjectName("checkBox_2") self.horizontalLayout.addWidget(self.checkBox_2) self.verticalLayout.addLayout(self.horizontalLayout) self.tableView = QtWidgets.QTableView(parent=Form) self.tableView.setObjectName("tableView") self.verticalLayout.addWidget(self.tableView) self.label = QtWidgets.QLabel(parent=Form) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) self.gridLayout_2.addLayout(self.verticalLayout, 1, 1, 1, 1) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.label_2.setText(_translate("Form", "TextLabel")) self.label_3.setText(_translate("Form", "TextLabel")) self.checkBox.setText(_translate("Form", "CheckBox")) self.checkBox_5.setText(_translate("Form", "CheckBox")) self.checkBox_4.setText(_translate("Form", "CheckBox")) self.checkBox_3.setText(_translate("Form", "CheckBox")) self.checkBox_2.setText(_translate("Form", "CheckBox")) self.label.setText(_translate("Form", "TextLabel"))