QLineEdit的背景图像

时间:2011-09-06 19:08:20

标签: c++ qt

如何为QLineEdit设置背景图片?以下样式表无效

QLineEdit {
  background-image:url(:/images/13.png);
}

2 个答案:

答案 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
}