QToolPushButton 动态更换按钮图标

窗口类为:MainWindow

class MainWindow : public QWidget

 

在MainWindow类的构造函数中设置 MainWindow类 过滤QToolPushButton的事件

ui.btnTest->installEventFilter(this);

 

在MainWindow类的重载函数 eventFilter 中处理按钮的鼠标移入和移出事件

bool MainWindow::eventFilter(QObject *watched, QEvent *event)
{
    if (watched == ui.btnTest) 
    {
        if (event->type() == QEvent::Enter) {
            ui.btnTest->setIcon(QIcon(QString::fromLocal8Bit(":/Resources/按钮hover.png")));
        }
        else if (event->type() == QEvent::Leave) {
            ui.btnTest->setIcon(QIcon(QString::fromLocal8Bit(":/Resources/按钮.png")));
        }
    }

    return QWidget::eventFilter(watched, event);
}

 

你可能感兴趣的:(Qt)