-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.py
46 lines (39 loc) · 1.75 KB
/
result.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'result.ui'
#
# Created by: PyQt5 UI code generator 5.15.10
#
# 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_ResultWindow(object):
def setupUi(self, ResultWindow):
ResultWindow.setObjectName("ResultWindow")
ResultWindow.resize(881, 517)
font = QtGui.QFont()
font.setFamily("Microsoft YaHei")
font.setPointSize(10)
ResultWindow.setFont(font)
self.centralwidget = QtWidgets.QWidget(ResultWindow)
self.centralwidget.setObjectName("centralwidget")
self.label = QtWidgets.QLabel(self.centralwidget)
self.label.setGeometry(QtCore.QRect(20, 20, 72, 15))
font = QtGui.QFont()
font.setFamily("Microsoft YaHei")
font.setPointSize(10)
self.label.setFont(font)
self.label.setObjectName("label")
self.resultTextEdit = QtWidgets.QTextEdit(self.centralwidget)
self.resultTextEdit.setGeometry(QtCore.QRect(20, 40, 841, 461))
font = QtGui.QFont()
font.setFamily("Microsoft YaHei")
font.setPointSize(10)
self.resultTextEdit.setFont(font)
self.resultTextEdit.setObjectName("resultTextEdit")
ResultWindow.setCentralWidget(self.centralwidget)
self.retranslateUi(ResultWindow)
QtCore.QMetaObject.connectSlotsByName(ResultWindow)
def retranslateUi(self, ResultWindow):
_translate = QtCore.QCoreApplication.translate
ResultWindow.setWindowTitle(_translate("ResultWindow", "MainWindow"))
self.label.setText(_translate("ResultWindow", "Result:"))