main
Minecraft_zzz 5 months ago
parent 4c3bbde89a
commit f3347b8842

@ -14,7 +14,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object): class Ui_MainWindow(object):
def setupUi(self, MainWindow): def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow") MainWindow.setObjectName("MainWindow")
MainWindow.resize(1092, 799) MainWindow.resize(1265, 875)
MainWindow.setMinimumSize(QtCore.QSize(0, 0)) MainWindow.setMinimumSize(QtCore.QSize(0, 0))
MainWindow.setMaximumSize(QtCore.QSize(10000, 10000)) MainWindow.setMaximumSize(QtCore.QSize(10000, 10000))
self.centralwidget = QtWidgets.QWidget(MainWindow) self.centralwidget = QtWidgets.QWidget(MainWindow)

@ -10,6 +10,73 @@ from MyUi import MyWindow
if __name__ == "__main__": if __name__ == "__main__":
#QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling) #QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling)
app = QApplication(sys.argv) app = QApplication(sys.argv)
app.setStyleSheet("""
/* 全局样式 */
* {
font-family: 'Microsoft YaHei';
}
/* 透明背景的特定标签样式 */
QLabel#label_8, QLabel#label_11, QLabel#label_13, QLabel#label_20, QLabel#label_21, QLabel#label_22, QLabel#label_23 {
background-color: transparent;
}
QLabel#label_24, QLabel#label_16,QLabel#label_25,QLabel#label_26,QLabel#label_27,QLabel#label_15,QLabel#label_17 {
background-color: transparent;
}
QLabel#label_18,QLabel#label_19,QLabel#PicBefore,QLabel#PicAfter{
background-color: transparent;
}
QLabel#class0,QLabel#class1,QLabel#class2,QLabel#class3,QLabel#Label_H,QLabel#Label_T,QLabel#Label_W,QLabel#Label_Type{
background-color: transparent;
}
QLabel#label_8, QLabel#label_11, QLabel#label_13, QLabel#label_20, QLabel#label_21, QLabel#label_22, QLabel#label_23,QLabel#label_24 {
font-size: 18px; /* 可以根据需要调整字体大小 */
}
/* 窗口背景样式 */
QWidget {
background: qlineargradient(x1:0, y1:0, x2:1, y2:0,
stop: 0.1 #c1dfc4,
stop: 0.3 #deecdd,
stop: 0.75 #deecdd
stop: 0.9 #c1dfc4);
}
/* 按钮样式 */
QPushButton {
background-color: #f2f9f2;
color: #333333;
border-radius: 10px;
padding: 10px;
border: 1px solid #CCCCCC;
}
/* 按钮悬停样式 */
QPushButton:hover {
background-color: rgba(255, 255, 255, 0.2);
}
/* 按钮按下样式 */
QPushButton:pressed {
background-color: rgba(255, 255, 255, 0.4);
}
/* 按钮禁用样式 */
QPushButton:disabled {
background-color: transparent;
color: #A0A0A0;
border: 1px solid #E0E0E0;
}
""")
MainWindow = QMainWindow() MainWindow = QMainWindow()
ui = Ui_MainWindow() ui = Ui_MainWindow()
My_Ui = MyWindow(ui) My_Ui = MyWindow(ui)

Loading…
Cancel
Save