mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-16 06:51:19 +08:00
41 lines
1.7 KiB
Python
41 lines
1.7 KiB
Python
# -*- 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", "添加停用词"))
|