添加自检界面

This commit is contained in:
2020-05-15 18:47:47 +08:00
parent 5eb985c8af
commit ccc7e25aec
21 changed files with 745 additions and 233 deletions
+39
View File
@@ -0,0 +1,39 @@
QFrame {
background-color: #FFFFFF;
}
QPushButton {
background-color: #FFFFFF /*palegoldenrod*/;
border-width: 2px;
border-color: darkkhaki;
border-style: solid;
border-radius: 5;
padding: 3px;
font: 30px "Arial";
}
QPushButton:pressed {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #dadbde, stop: 1 #f6f7fa);
}
QPushButton:flat {
border: none; /* no border for a flat push button */
}
QPushButton:default {
border-color: navy; /* make the default button prominent */
}
QLineEdit {
background-color: #FFFFFF
}