-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanotherGUI.py
More file actions
58 lines (51 loc) · 2.24 KB
/
Copy pathanotherGUI.py
File metadata and controls
58 lines (51 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'anotherGUI.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_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(350, 280)
Form.setMinimumSize(QtCore.QSize(350, 280))
Form.setMaximumSize(QtCore.QSize(350, 280))
self.doubleSpinBox = QtWidgets.QDoubleSpinBox(Form)
self.doubleSpinBox.setGeometry(QtCore.QRect(250, 100, 46, 20))
font = QtGui.QFont()
font.setPointSize(10)
self.doubleSpinBox.setFont(font)
self.doubleSpinBox.setDecimals(1)
self.doubleSpinBox.setMaximum(9.9)
self.doubleSpinBox.setSingleStep(0.1)
self.doubleSpinBox.setObjectName("doubleSpinBox")
self.label = QtWidgets.QLabel(Form)
self.label.setGeometry(QtCore.QRect(50, 100, 180, 20))
font = QtGui.QFont()
font.setPointSize(11)
self.label.setFont(font)
self.label.setObjectName("label")
self.pushButton = QtWidgets.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(220, 160, 75, 23))
font = QtGui.QFont()
font.setPointSize(10)
self.pushButton.setFont(font)
self.pushButton.setObjectName("pushButton")
self.label_3 = QtWidgets.QLabel(Form)
self.label_3.setGeometry(QtCore.QRect(10, 250, 381, 16))
font = QtGui.QFont()
font.setPointSize(11)
font.setBold(True)
font.setWeight(75)
self.label_3.setFont(font)
self.label_3.setObjectName("label_3")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "确认开机采样时间和频率"))
self.label.setText(_translate("Form", "延迟采集的时间(小时):"))
self.pushButton.setText(_translate("Form", "写入tf卡"))
self.label_3.setText(_translate("Form", "正在获取当前时间"))