mirror of
https://github.com/LC044/WeChatMsg
synced 2025-02-22 19:02:17 +08:00
补充文件
This commit is contained in:
parent
e420446723
commit
77e206f866
40
app/ui/tool/setting/settingUi.py
Normal file
40
app/ui/tool/setting/settingUi.py
Normal file
@ -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", "添加停用词"))
|
Loading…
Reference in New Issue
Block a user