1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # -*- coding: utf-8 -*-
- # Form implementation generated from reading ui file 'traffic.ui'
- #
- # Created by: PyQt5 UI code generator 5.15.9
- #
- # 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(781, 675)
- Dialog.setStyleSheet("border-style: solid;\n"
- "border-radius:10px;\n"
- "border-top-color:#ffffff;\n"
- "border-left-color:#ffffff;\n"
- "border-right-color:#888888;\n"
- "border-bottom-color:#888888;")
- self.label = QtWidgets.QLabel(Dialog)
- self.label.setGeometry(QtCore.QRect(140, 160, 481, 311))
- self.label.setStyleSheet("border-width:3px;\n"
- "border-style:solid;\n"
- "border-color:blue;\n"
- "border-radius:10px;\n"
- "border-color:red;\n"
- "")
- self.label.setText("")
- self.label.setObjectName("label")
- self.pushButton_2 = QtWidgets.QPushButton(Dialog)
- self.pushButton_2.setGeometry(QtCore.QRect(260, 60, 171, 41))
- self.pushButton_2.setStyleSheet("border-width:3px;\n"
- "border-style: solid;\n"
- "border-radius:10px;\n"
- "border-top-color:#ffffff;\n"
- "border-left-color:#ffffff;\n"
- "border-right-color:#888888;\n"
- "border-bottom-color:#888888;")
- self.pushButton_2.setObjectName("pushButton_2")
- self.label_2 = QtWidgets.QLabel(Dialog)
- self.label_2.setGeometry(QtCore.QRect(390, 554, 141, 41))
- self.label_2.setStyleSheet("border-width:3px;\n"
- "border-style: solid;\n"
- "border-radius:10px;\n"
- "border-top-color:#ffffff;\n"
- "border-left-color:#ffffff;\n"
- "border-right-color:#888888;\n"
- "border-bottom-color:#888888;")
- self.label_2.setObjectName("label_2")
- self.retranslateUi(Dialog)
- QtCore.QMetaObject.connectSlotsByName(Dialog)
- def retranslateUi(self, Dialog):
- _translate = QtCore.QCoreApplication.translate
- Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
- self.pushButton_2.setText(_translate("Dialog", "智能交通应用系统"))
- self.label_2.setText(_translate("Dialog", "抓取图像"))
|