How to set background image for QLineEdit
? The following style sheet doesn't work
QLineEdit {
background-image:url(:/images/13.png);
}
How to set background image for QLineEdit
? The following style sheet doesn't work
QLineEdit {
background-image:url(:/images/13.png);
}
QLineEdit {
border: 1px solid #000000; //image work with this line and didn't work with out))
image: url(:/images/13.png);
}
better solution is:
#fileFilter
{
background: url(/Users/karelhladky/Pictures/Icons/famfamfam/icons/emoticon_grin.png);
// there is no need add border property
}