背景图像为QLineEdit

Background-image for QLineEdit

本文关键字:QLineEdit 图像 背景      更新时间:2023-10-16

如何设置QLineEdit的背景图像?下面的样式表不起作用

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);
}

更好的解决方案是:

#fileFilter
{
    background: url(/Users/karelhladky/Pictures/Icons/famfamfam/icons/emoticon_grin.png);
        // there is no need add border property
}