mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-15 22:41:20 +08:00
54 lines
2.2 KiB
Python
54 lines
2.2 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'contactUi.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")
|
||
|
Form.resize(840, 752)
|
||
|
Form.setStyleSheet("background: rgb(240, 240, 240);")
|
||
|
self.horizontalLayout = QtWidgets.QHBoxLayout(Form)
|
||
|
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
|
||
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
||
|
self.verticalLayout = QtWidgets.QVBoxLayout()
|
||
|
self.verticalLayout.setObjectName("verticalLayout")
|
||
|
self.lineEdit = QtWidgets.QLineEdit(Form)
|
||
|
self.lineEdit.setMinimumSize(QtCore.QSize(250, 30))
|
||
|
self.lineEdit.setMaximumSize(QtCore.QSize(250, 16777215))
|
||
|
self.lineEdit.setObjectName("lineEdit")
|
||
|
self.verticalLayout.addWidget(self.lineEdit)
|
||
|
self.listWidget = QtWidgets.QListWidget(Form)
|
||
|
self.listWidget.setMinimumSize(QtCore.QSize(250, 0))
|
||
|
self.listWidget.setMaximumSize(QtCore.QSize(250, 16777215))
|
||
|
self.listWidget.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
|
||
|
self.listWidget.setObjectName("listWidget")
|
||
|
self.verticalLayout.addWidget(self.listWidget)
|
||
|
self.horizontalLayout.addLayout(self.verticalLayout)
|
||
|
self.stackedWidget = QtWidgets.QStackedWidget(Form)
|
||
|
self.stackedWidget.setObjectName("stackedWidget")
|
||
|
self.page = QtWidgets.QWidget()
|
||
|
self.page.setObjectName("page")
|
||
|
self.stackedWidget.addWidget(self.page)
|
||
|
self.page_2 = QtWidgets.QWidget()
|
||
|
self.page_2.setObjectName("page_2")
|
||
|
self.stackedWidget.addWidget(self.page_2)
|
||
|
self.horizontalLayout.addWidget(self.stackedWidget)
|
||
|
self.horizontalLayout.setStretch(1, 1)
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
self.stackedWidget.setCurrentIndex(1)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Form.setWindowTitle(_translate("Form", "Form"))
|