Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
I want to set a bitmap image on the push button in QT.. How to do it.. Pls help me...
Posted

Hope this[^] will guide you.
 
Share this answer
 
Comments
Gokulnath007 12-Jan-11 0:08am    
I want to set the bitmap image on the push button..
[SOLVED]

QPushButton *mainImage;
mainImage = new QPushButton(this);
mainImage->move(25,210);
mainImage->setIconSize(QSize(100,160));
mainImage->setGeometry(70,10,100,160);
mainImage->setFocusPolicy(Qt::TabFocus);
mainImage->show();
QString ImagePath;
ImagePath = "C:\\Documents and Settings\\cgvak\\Desktop\\fun1.bmp";
QPixmap imagedisplay(ImagePath);
QIcon icon(imagedisplay);
mainImage->setIcon(icon);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900