QT QPushButton 通过stylesheet 设置样式


通过QPushButton 的 stylesheet 设置按钮样式:

	ui->pushButton->setStyleSheet("QPushButton{background-color:rgba(255,178,0,100%);\
                                            color: white;   border-radius: 10px;  border: 2px groove gray; border-style: outset;}" // 按键本色
		"QPushButton:hover{background-color:white; color: black;}"  // 鼠标停放时的色彩
		"QPushButton:pressed{background-color:rgb(85, 170, 255); border-style: inset; }"   // 鼠标按下的色彩


你可能感兴趣的:(Qt笔记)