如何为QLineEdit
设置背景图片?以下样式表无效
QLineEdit {
background-image:url(:/images/13.png);
}
答案 0 :(得分:3)
QLineEdit {
border: 1px solid #000000; //image work with this line and didn't work with out))
image: url(:/images/13.png);
}
答案 1 :(得分:1)
更好的解决方案是:
#fileFilter
{
background: url(/Users/karelhladky/Pictures/Icons/famfamfam/icons/emoticon_grin.png);
// there is no need add border property
}