123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # -*- coding: utf-8 -*-
- # Form implementation generated from reading ui file 'reparkingUi.ui'
- #
- # Created by: PyQt5 UI code generator 5.15.4
- #
- # WARNING: Any manual changes made to this file will be lost when pyuic5 is
- # run again. Do not edit this file unless you know what you are doing.
- from PyQt5 import QtCore, QtGui, QtWidgets
- class Ui_Dialog(object):
- def setupUi(self, Dialog):
- Dialog.setObjectName("Dialog")
- Dialog.resize(291, 58)
- self.horizontalLayout = QtWidgets.QHBoxLayout(Dialog)
- self.horizontalLayout.setObjectName("horizontalLayout")
- self.label = QtWidgets.QLabel(Dialog)
- font = QtGui.QFont()
- font.setPointSize(12)
- font.setBold(True)
- font.setWeight(75)
- self.label.setFont(font)
- self.label.setObjectName("label")
- self.horizontalLayout.addWidget(self.label)
- self.park_lineEdit = QtWidgets.QLineEdit(Dialog)
- self.park_lineEdit.setMinimumSize(QtCore.QSize(0, 38))
- font = QtGui.QFont()
- font.setPointSize(28)
- self.park_lineEdit.setFont(font)
- self.park_lineEdit.setText("")
- self.park_lineEdit.setObjectName("park_lineEdit")
- self.horizontalLayout.addWidget(self.park_lineEdit)
- self.OK_pushButton = QtWidgets.QPushButton(Dialog)
- self.OK_pushButton.setMinimumSize(QtCore.QSize(0, 36))
- font = QtGui.QFont()
- font.setPointSize(24)
- self.OK_pushButton.setFont(font)
- self.OK_pushButton.setObjectName("OK_pushButton")
- self.horizontalLayout.addWidget(self.OK_pushButton)
- self.retranslateUi(Dialog)
- QtCore.QMetaObject.connectSlotsByName(Dialog)
- def retranslateUi(self, Dialog):
- _translate = QtCore.QCoreApplication.translate
- Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
- self.label.setText(_translate("Dialog", "目的地车位号:"))
- self.OK_pushButton.setText(_translate("Dialog", "确认"))
|