|
@@ -0,0 +1,47 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+
|
|
|
+# Form implementation generated from reading ui file 'monitor.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(492, 440)
|
|
|
+ self.label = QtWidgets.QLabel(Dialog)
|
|
|
+ self.label.setGeometry(QtCore.QRect(80, 50, 121, 131))
|
|
|
+ self.label.setStyleSheet("border-width:5px;\n"
|
|
|
+"border-style:dotted;\n"
|
|
|
+"border-color:red;\n"
|
|
|
+"border-radius:10px;\n"
|
|
|
+"border-top-color:red;\n"
|
|
|
+"border-bottom-color:green;\n"
|
|
|
+"border-left-color:green;\n"
|
|
|
+"border-right-color:pink;")
|
|
|
+ self.label.setObjectName("label")
|
|
|
+ self.pushButton = QtWidgets.QPushButton(Dialog)
|
|
|
+ self.pushButton.setGeometry(QtCore.QRect(210, 340, 93, 28))
|
|
|
+ self.pushButton.setStyleSheet("border-width:2px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-radius:7px;\n"
|
|
|
+"border-left-color:#ffffff;\n"
|
|
|
+"border-top-color:#ffffff;\n"
|
|
|
+"border-bottom-color:#888888;\n"
|
|
|
+"border-right-color:#bbbbbb;")
|
|
|
+ self.pushButton.setObjectName("pushButton")
|
|
|
+
|
|
|
+ self.retranslateUi(Dialog)
|
|
|
+ QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
+
|
|
|
+ def retranslateUi(self, Dialog):
|
|
|
+ _translate = QtCore.QCoreApplication.translate
|
|
|
+ Dialog.setWindowTitle(_translate("Dialog", "智能交通监控系统"))
|
|
|
+ self.label.setText(_translate("Dialog", "视频"))
|
|
|
+ self.pushButton.setText(_translate("Dialog", "改变监控"))
|