在代码中设置它的样式表就可以了。打个比方,做视频播放器的时候,通常播放和暂停键是一个按键,只是icon换了而已,setStyleSheet就可以达到目的了。我们可以这样做:
void Player::playPause()
{
if (is_playing)
{
/* Pause */
Pause();
ui->pushButton->setStyleSheet(tr("border-image: url(:/images/play.png);"));;
}
else
{
/* Play */
Play ();
ui->pushButton->setStyleSheet(tr("border-image: url(:/images/pause.png);"));
}
}