|
@@ -0,0 +1,46 @@
|
|
|
|
+# -*- 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(529, 433)
|
|
|
|
+ self.label = QtWidgets.QLabel(Dialog)
|
|
|
|
+ self.label.setGeometry(QtCore.QRect(0, 30, 111, 81))
|
|
|
|
+ self.label.setStyleSheet("border-width:2px;\n"
|
|
|
|
+"border-style:solid;\n"
|
|
|
|
+"border-radius:10px;\n"
|
|
|
|
+"border-top-color:black;\n"
|
|
|
|
+"border-left-color:red;\n"
|
|
|
|
+"border-botton-color:green;\n"
|
|
|
|
+"border-right-color:red;")
|
|
|
|
+ self.label.setObjectName("label")
|
|
|
|
+ self.pushButton = QtWidgets.QPushButton(Dialog)
|
|
|
|
+ self.pushButton.setGeometry(QtCore.QRect(200, 200, 151, 121))
|
|
|
|
+ self.pushButton.setStyleSheet("border-width:2px;\n"
|
|
|
|
+"border-style:solid;\n"
|
|
|
|
+"border-radius:5px;\n"
|
|
|
|
+"border-top-color:#ffffff;\n"
|
|
|
|
+"border-left-color:#ffffff;\n"
|
|
|
|
+"border-botton-color:#88888888;\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", "Dialog"))
|
|
|
|
+ self.label.setText(_translate("Dialog", "视频显示"))
|
|
|
|
+ self.pushButton.setText(_translate("Dialog", "视频"))
|