message_box_ui
0
0
487
385
提示
-
QLabel
{
/*字体为微软雅黑*/
font-family:Microsoft Yahei;
/*字体大小为20点*/
font-size:30pt;
/*字体颜色为白色*/
/*color:white;*/
/*背景颜色*/
/*background-color:rgb(14 , 150 , 254);*/
/*边框圆角半径为8像素*/
/*border-radius:8px;*/
}
提示信息
Qt::AlignCenter
-
0
0
0
130
false
/*按钮普通态*/
QPushButton
{
/*字体为微软雅黑*/
font-family:Microsoft Yahei;
/*字体大小为20点*/
font-size:25pt;
/*字体颜色为白色*/
/*color:white;*/
/*背景颜色*/
background-color:rgb(225 , 225 , 225);
/*边框圆角半径为8像素*/
border-radius:20px;
}
/*按钮停留态*/
QPushButton:hover
{
/*背景颜色*/
background-color:rgb(44 , 137 , 255);
/*边框圆角半径为8像素*/
/*border-radius:20px;*/
}
/*按钮按下态*/
QPushButton:pressed
{
/*背景颜色*/
background-color:rgb(255 , 0 , 0);
/*左内边距为3像素,让按下时字向右移动3像素*/
padding-left:3px;
/*上内边距为3像素,让按下时字向下移动3像素*/
padding-top:3px;
}
确定