From 77e206f86659ba7641869cff2450964bfa5f0c37 Mon Sep 17 00:00:00 2001 From: shuaikangzhou <863909694@qq.com> Date: Wed, 20 Dec 2023 23:30:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/ui/tool/setting/settingUi.py | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 app/ui/tool/setting/settingUi.py diff --git a/app/ui/tool/setting/settingUi.py b/app/ui/tool/setting/settingUi.py new file mode 100644 index 0000000..b38e57a --- /dev/null +++ b/app/ui/tool/setting/settingUi.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'settingUi.ui' +# +# Created by: PyQt5 UI code generator 5.15.7 +# +# 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(587, 573) + self.verticalLayout = QtWidgets.QVBoxLayout(Form) + self.verticalLayout.setObjectName("verticalLayout") + self.label = QtWidgets.QLabel(Form) + self.label.setObjectName("label") + self.verticalLayout.addWidget(self.label) + self.plainTextEdit = QtWidgets.QPlainTextEdit(Form) + self.plainTextEdit.setFrameShape(QtWidgets.QFrame.Box) + self.plainTextEdit.setFrameShadow(QtWidgets.QFrame.Sunken) + self.plainTextEdit.setObjectName("plainTextEdit") + self.verticalLayout.addWidget(self.plainTextEdit) + self.btn_addstopword = QtWidgets.QPushButton(Form) + self.btn_addstopword.setObjectName("btn_addstopword") + self.verticalLayout.addWidget(self.btn_addstopword) + + self.retranslateUi(Form) + QtCore.QMetaObject.connectSlotsByName(Form) + + def retranslateUi(self, Form): + _translate = QtCore.QCoreApplication.translate + Form.setWindowTitle(_translate("Form", "Form")) + self.label.setText(_translate("Form", "文本框里输入年度报告词云停用词,每个词之间用空格隔开")) + self.plainTextEdit.setPlainText(_translate("Form", "哈哈哈 发呆")) + self.btn_addstopword.setText(_translate("Form", "添加停用词"))