mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-15 22:41:20 +08:00
49 lines
2.0 KiB
Python
49 lines
2.0 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'chatInfoUi.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, QtWidgets
|
||
|
|
||
|
|
||
|
class Ui_Form(object):
|
||
|
def setupUi(self, Form):
|
||
|
Form.setObjectName("Form")
|
||
|
self.verticalLayout = QtWidgets.QVBoxLayout(Form)
|
||
|
self.verticalLayout.setContentsMargins(0, 0, 0, 0)
|
||
|
self.verticalLayout.setSpacing(0)
|
||
|
self.verticalLayout.setObjectName("verticalLayout")
|
||
|
self.frame = QtWidgets.QFrame(Form)
|
||
|
self.frame.setFrameShape(QtWidgets.QFrame.NoFrame)
|
||
|
self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
|
||
|
self.frame.setObjectName("frame")
|
||
|
self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.frame)
|
||
|
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
||
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
||
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
||
|
self.label_reamrk = QtWidgets.QLabel(self.frame)
|
||
|
self.label_reamrk.setObjectName("label_reamrk")
|
||
|
self.horizontalLayout_2.addWidget(self.label_reamrk)
|
||
|
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
||
|
self.horizontalLayout_2.addItem(spacerItem)
|
||
|
self.toolButton = QtWidgets.QToolButton(self.frame)
|
||
|
self.toolButton.setObjectName("toolButton")
|
||
|
self.horizontalLayout_2.addWidget(self.toolButton)
|
||
|
self.verticalLayout_2.addLayout(self.horizontalLayout_2)
|
||
|
|
||
|
self.verticalLayout.addWidget(self.frame)
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Form.setWindowTitle(_translate("Form", "Form"))
|
||
|
self.label_reamrk.setText(_translate("Form", "TextLabel"))
|
||
|
self.toolButton.setText(_translate("Form", "..."))
|