-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthorWin.py
54 lines (47 loc) · 2.42 KB
/
authorWin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'authorWin.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# 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_Dialog(object):
def setupUi(self, Dialog):
Dialog.setObjectName("Dialog")
Dialog.resize(309, 130)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap("../../../迅雷下载/开发者文件夹/Applications.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
Dialog.setWindowIcon(icon)
self.buttonBox = QtWidgets.QDialogButtonBox(Dialog)
self.buttonBox.setGeometry(QtCore.QRect(11, 99, 193, 28))
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.label = QtWidgets.QLabel(Dialog)
self.label.setGeometry(QtCore.QRect(11, 11, 300, 16))
self.label.setIndent(-1)
self.label.setObjectName("label")
self.label_2 = QtWidgets.QLabel(Dialog)
self.label_2.setGeometry(QtCore.QRect(11, 33, 165, 16))
self.label_2.setIndent(-1)
self.label_2.setObjectName("label_2")
self.label_3 = QtWidgets.QLabel(Dialog)
self.label_3.setGeometry(QtCore.QRect(11, 55, 112, 16))
self.label_3.setIndent(-1)
self.label_3.setObjectName("label_3")
self.label_4 = QtWidgets.QLabel(Dialog)
self.label_4.setGeometry(QtCore.QRect(11, 77, 216, 16))
self.label_4.setIndent(-1)
self.label_4.setObjectName("label_4")
self.retranslateUi(Dialog)
self.buttonBox.accepted.connect(Dialog.accept)
self.buttonBox.rejected.connect(Dialog.reject)
QtCore.QMetaObject.connectSlotsByName(Dialog)
def retranslateUi(self, Dialog):
_translate = QtCore.QCoreApplication.translate
Dialog.setWindowTitle(_translate("Dialog", "关于Author"))
self.label.setText(_translate("Dialog", "文东柳的作业啊,完全自己手打不解释好么!"))
self.label_2.setText(_translate("Dialog", "如有雷同,纯属抄袭我的"))
self.label_3.setText(_translate("Dialog", "www.likefy.top"))
self.label_4.setText(_translate("Dialog", "Email:wendongliu@likefy.top"))