|
@@ -0,0 +1,33 @@
|
|
|
+# -*- 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_traffic(object):
|
|
|
+ def setupUi(self, traffic):
|
|
|
+ traffic.setObjectName("traffic")
|
|
|
+ traffic.setWindowModality(QtCore.Qt.ApplicationModal)
|
|
|
+ traffic.resize(400, 300)
|
|
|
+ self.pushButton = QtWidgets.QPushButton(traffic)
|
|
|
+ self.pushButton.setGeometry(QtCore.QRect(160, 190, 75, 23))
|
|
|
+ self.pushButton.setObjectName("pushButton")
|
|
|
+ self.duo = QtWidgets.QLabel(traffic)
|
|
|
+ self.duo.setGeometry(QtCore.QRect(110, 50, 201, 121))
|
|
|
+ self.duo.setObjectName("duo")
|
|
|
+
|
|
|
+ self.retranslateUi(traffic)
|
|
|
+ QtCore.QMetaObject.connectSlotsByName(traffic)
|
|
|
+
|
|
|
+ def retranslateUi(self, traffic):
|
|
|
+ _translate = QtCore.QCoreApplication.translate
|
|
|
+ traffic.setWindowTitle(_translate("traffic", "智能交通监控系统"))
|
|
|
+ self.pushButton.setText(_translate("traffic", "PushButton"))
|
|
|
+ self.duo.setText(_translate("traffic", "TextLabel"))
|