main.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Form implementation generated from reading ui file 'main.ui'
  2. #
  3. # Created by: PyQt6 UI code generator 6.5.1
  4. #
  5. # WARNING: Any manual changes made to this file will be lost when pyuic6 is
  6. # run again. Do not edit this file unless you know what you are doing.
  7. from PyQt6 import QtCore, QtWidgets
  8. from PyQt6.QtGui import QIcon
  9. class Ui_Form(object):
  10. def setupUi(self, Form):
  11. Form.setObjectName("Form")
  12. Form.resize(766, 522)
  13. Form.setWindowIcon(QIcon(':/icon/1.ico'))
  14. Form.setLayoutDirection(QtCore.Qt.LayoutDirection.LeftToRight)
  15. self.gridLayout_2 = QtWidgets.QGridLayout(Form)
  16. self.gridLayout_2.setObjectName("gridLayout_2")
  17. self.verticalLayout = QtWidgets.QVBoxLayout()
  18. self.verticalLayout.setObjectName("verticalLayout")
  19. self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
  20. self.horizontalLayout_2.setObjectName("horizontalLayout_2")
  21. self.label_2 = QtWidgets.QLabel(parent=Form)
  22. self.label_2.setObjectName("label_2")
  23. self.horizontalLayout_2.addWidget(self.label_2)
  24. self.lineEdit = QtWidgets.QLineEdit(parent=Form)
  25. self.lineEdit.setObjectName("lineEdit")
  26. self.horizontalLayout_2.addWidget(self.lineEdit)
  27. self.label_3 = QtWidgets.QLabel(parent=Form)
  28. self.label_3.setObjectName("label_3")
  29. self.horizontalLayout_2.addWidget(self.label_3)
  30. self.verticalLayout.addLayout(self.horizontalLayout_2)
  31. self.horizontalLayout = QtWidgets.QHBoxLayout()
  32. self.horizontalLayout.setObjectName("horizontalLayout")
  33. self.checkBox = QtWidgets.QCheckBox(parent=Form)
  34. self.checkBox.setObjectName("checkBox")
  35. self.horizontalLayout.addWidget(self.checkBox)
  36. self.checkBox_5 = QtWidgets.QCheckBox(parent=Form)
  37. self.checkBox_5.setObjectName("checkBox_5")
  38. self.horizontalLayout.addWidget(self.checkBox_5)
  39. self.checkBox_4 = QtWidgets.QCheckBox(parent=Form)
  40. self.checkBox_4.setObjectName("checkBox_4")
  41. self.horizontalLayout.addWidget(self.checkBox_4)
  42. self.checkBox_3 = QtWidgets.QCheckBox(parent=Form)
  43. self.checkBox_3.setObjectName("checkBox_3")
  44. self.horizontalLayout.addWidget(self.checkBox_3)
  45. self.checkBox_2 = QtWidgets.QCheckBox(parent=Form)
  46. self.checkBox_2.setObjectName("checkBox_2")
  47. self.horizontalLayout.addWidget(self.checkBox_2)
  48. self.verticalLayout.addLayout(self.horizontalLayout)
  49. self.tableView = QtWidgets.QTableView(parent=Form)
  50. self.tableView.setObjectName("tableView")
  51. self.verticalLayout.addWidget(self.tableView)
  52. self.label = QtWidgets.QLabel(parent=Form)
  53. self.label.setObjectName("label")
  54. self.verticalLayout.addWidget(self.label)
  55. self.gridLayout_2.addLayout(self.verticalLayout, 1, 1, 1, 1)
  56. self.retranslateUi(Form)
  57. QtCore.QMetaObject.connectSlotsByName(Form)
  58. def retranslateUi(self, Form):
  59. _translate = QtCore.QCoreApplication.translate
  60. Form.setWindowTitle(_translate("Form", "Form"))
  61. self.label_2.setText(_translate("Form", "TextLabel"))
  62. self.label_3.setText(_translate("Form", "TextLabel"))
  63. self.checkBox.setText(_translate("Form", "CheckBox"))
  64. self.checkBox_5.setText(_translate("Form", "CheckBox"))
  65. self.checkBox_4.setText(_translate("Form", "CheckBox"))
  66. self.checkBox_3.setText(_translate("Form", "CheckBox"))
  67. self.checkBox_2.setText(_translate("Form", "CheckBox"))
  68. self.label.setText(_translate("Form", "TextLabel"))