Simplest way to set image on the Push Button::
btn = (QPushButton *)ui->btn;
btn->setIconSize((QSize(56,68)));
QPixmap* pixmap1 = new QPixmap(":/images/orange.bmp");
QIcon icon1(*pixmap1);
btn->setIcon(icon1);
I think this might help you..
Simplest way to set image on the Push Button::
btn = (QPushButton *)ui->btn;
btn->setIconSize((QSize(56,68)));
QPixmap* pixmap1 = new QPixmap(":/images/orange.bmp");
QIcon icon1(*pixmap1);
btn->setIcon(icon1);
I think this might help you..
Bookmarks