This commit is contained in:
2025-10-21 23:47:29 +08:00
parent 908cda34e6
commit 431a94a4fb
97 changed files with 34329 additions and 0 deletions

57
C++/2.3.0/styles.qss Normal file
View File

@@ -0,0 +1,57 @@
QMainWindow {
background-color: #f0f0f0;
font-family: "Microsoft YaHei", Arial, sans-serif;
}
QGroupBox {
border: 1px solid #ccc;
border-radius: 5px;
margin-top: 1ex;
font-weight: bold;
}
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top center;
padding: 0 5px;
}
QTextEdit {
background-color: white;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 10pt;
}
QPushButton {
background-color: #4a86e8;
color: white;
border: none;
padding: 5px 10px;
border-radius: 3px;
min-height: 30px;
}
QPushButton:hover {
background-color: #3a76d8;
}
QPushButton:disabled {
background-color: #cccccc;
}
QLabel {
font-size: 9pt;
}
QProgressBar {
border: 1px solid #ccc;
border-radius: 3px;
text-align: center;
background-color: #f8f8f8;
}
QProgressBar::chunk {
background-color: #4a86e8;
width: 10px;
}