-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathchild2.py
74 lines (68 loc) · 3.01 KB
/
child2.py
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'child2.ui'
#
# Created by: PyQt5 UI code generator 5.11.3
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form2(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(820, 620)
self.queryBtn = QtWidgets.QPushButton(Form)
self.queryBtn.setGeometry(QtCore.QRect(280, 540, 75, 23))
self.queryBtn.setObjectName("queryBtn")
self.clearBtn = QtWidgets.QPushButton(Form)
self.clearBtn.setGeometry(QtCore.QRect(540, 540, 75, 23))
self.clearBtn.setObjectName("clearBtn")
self.groupBox = QtWidgets.QGroupBox(Form)
self.groupBox.setGeometry(QtCore.QRect(70, 40, 731, 481))
font = QtGui.QFont()
font.setFamily("Adobe Arabic")
font.setPointSize(12)
font.setBold(True)
font.setWeight(75)
self.groupBox.setFont(font)
self.groupBox.setObjectName("groupBox")
self.label = QtWidgets.QLabel(self.groupBox)
self.label.setGeometry(QtCore.QRect(240, 50, 81, 20))
font = QtGui.QFont()
font.setFamily("Adobe Arabic")
font.setPointSize(12)
font.setBold(True)
font.setWeight(75)
self.label.setFont(font)
self.label.setObjectName("label")
self.comboBox = QtWidgets.QComboBox(self.groupBox)
self.comboBox.setGeometry(QtCore.QRect(360, 40, 181, 31))
font = QtGui.QFont()
font.setPointSize(11)
self.comboBox.setFont(font)
self.comboBox.setObjectName("comboBox")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.label_2 = QtWidgets.QLabel(self.groupBox)
self.label_2.setGeometry(QtCore.QRect(60, 90, 631, 371))
font = QtGui.QFont()
font.setFamily("Adobe Arabic")
font.setPointSize(14)
font.setBold(True)
font.setWeight(75)
self.label_2.setFont(font)
self.label_2.setObjectName("label_2")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.queryBtn.setText(_translate("Form", "查询"))
self.clearBtn.setText(_translate("Form", "清空"))
self.groupBox.setTitle(_translate("Form", "全国温度实时分布图"))
self.label.setText(_translate("Form", "查询条件:"))
self.comboBox.setItemText(0, _translate("Form", "全国24小时最高温分布"))
self.comboBox.setItemText(1, _translate("Form", "全国24小时最低温分布"))
self.comboBox.setItemText(2, _translate("Form", "全国24小时降水量分布"))
self.comboBox.setItemText(3, _translate("Form", "全国24小时平均气温分布"))
self.label_2.setText(_translate("Form", "在此处显示查询结果"))