reparkingUi.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # -*- coding: utf-8 -*-
  2. # Form implementation generated from reading ui file 'reparkingUi.ui'
  3. #
  4. # Created by: PyQt5 UI code generator 5.15.4
  5. #
  6. # WARNING: Any manual changes made to this file will be lost when pyuic5 is
  7. # run again. Do not edit this file unless you know what you are doing.
  8. from PyQt5 import QtCore, QtGui, QtWidgets
  9. class Ui_Dialog(object):
  10. def setupUi(self, Dialog):
  11. Dialog.setObjectName("Dialog")
  12. Dialog.resize(291, 58)
  13. self.horizontalLayout = QtWidgets.QHBoxLayout(Dialog)
  14. self.horizontalLayout.setObjectName("horizontalLayout")
  15. self.label = QtWidgets.QLabel(Dialog)
  16. font = QtGui.QFont()
  17. font.setPointSize(12)
  18. font.setBold(True)
  19. font.setWeight(75)
  20. self.label.setFont(font)
  21. self.label.setObjectName("label")
  22. self.horizontalLayout.addWidget(self.label)
  23. self.park_lineEdit = QtWidgets.QLineEdit(Dialog)
  24. self.park_lineEdit.setMinimumSize(QtCore.QSize(0, 38))
  25. font = QtGui.QFont()
  26. font.setPointSize(28)
  27. self.park_lineEdit.setFont(font)
  28. self.park_lineEdit.setText("")
  29. self.park_lineEdit.setObjectName("park_lineEdit")
  30. self.horizontalLayout.addWidget(self.park_lineEdit)
  31. self.OK_pushButton = QtWidgets.QPushButton(Dialog)
  32. self.OK_pushButton.setMinimumSize(QtCore.QSize(0, 36))
  33. font = QtGui.QFont()
  34. font.setPointSize(24)
  35. self.OK_pushButton.setFont(font)
  36. self.OK_pushButton.setObjectName("OK_pushButton")
  37. self.horizontalLayout.addWidget(self.OK_pushButton)
  38. self.retranslateUi(Dialog)
  39. QtCore.QMetaObject.connectSlotsByName(Dialog)
  40. def retranslateUi(self, Dialog):
  41. _translate = QtCore.QCoreApplication.translate
  42. Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
  43. self.label.setText(_translate("Dialog", "目的地车位号:"))
  44. self.OK_pushButton.setText(_translate("Dialog", "确认"))