只要一条指令就可以实现:
ui->listWidget->setStyleSheet("background-color:transparent");
其中background-color设置参考CSS背景设置如下:
以下摘自:http://www.cnblogs.com/sunyunh/archive/2012/08/26/2657050.html
CSS 允许应用纯色(background-color)作为背景,也允许使用背景图像(background-image)创建相当复杂的效果。CSS 在这方面的能力远远在 HTML 之上。
一、背景颜色
可以使用 background-color 属性为元素设置背景色。这个属性接受任何合法的颜色值。可以为所有元素设置背景色,这包括 body 一直到 em 和 a 等行内元素。比如下面这条规则把
元素的背景设置为灰色:p {background-color: gray;}
如果您希望背景色从元素中的文本向外少有延伸,只需增加一些内边距:
p {background-color: gray; padding: 20px;}
background-color 不能继承,其默认值是 transparent。transparent 有“透明”之意。也就是说,如果一个元素没有指定背景色,那么背景就是透明的,这样其祖先元素的背景才能可见。
背景颜色的示例:
<html> <head> <style type="text/css"> /*设置body的背景色为黄色*/ body {background-color: yellow} /*设置一级标题的背景颜色为绿色*/ h1 {background-color: #00ff00} /*设置二级标题的背景颜色为透明*/ h2 {background-color: transparent} /*设置所有段落的背景颜色为粉红色*/ p {background-color: rgb(250,0,255)} /*设置class属性值为no2的段落的背景颜色为灰色,并且有20px的内边矩*/ p.no2 {background-color: gray; padding: 20px;} style> head> <body> <h1>这是标题 1h1> <h2>这是标题 2h2> <p>这是段落p> <p class="no2">这个段落设置了内边距。p> body> html>
二、背景图像
1.基本语法
要为元素设置背景图像,需要使用 background-image 属性。background-image 属性的默认值是 none,表示背景上没有放置任何图像。如果需要设置一个背景图像,必须为这个属性设置一个 URL 值:
body {background-image: url(/i/eg_bg_04.gif);}
元素的background-image属性 也不能继承。事实上,所有背景属性都不能继承。
2.背景图像的应用范围
大多数背景都应用到 body 元素,不过并不仅限于此。下面例子为一个段落应用了一个背景,而不会对文档的其他部分应用背景:
p.flower {background-image: url(/i/eg_bg_03.gif);}
甚至可以为行内元素设置背景图像,下面的例子为一个链接设置了背景图像:
a.radio {background-image: url(/i/eg_bg_07.gif);}
3.背景图像的重复
如果需要在页面上对背景图像进行平铺,可以使用 background-repeat 属性。background-repeat属性取值: repeat 导致图像在水平垂直方向上都平铺,repeat-x 和 repeat-y 分别导致图像只在水平或垂直方向上重复,no-repeat 则不允许图像在任何方向上平铺。
默认情况下,背景图像将从一个元素的左上角开始。请看下面的例子:
/*为body元素设置垂直平铺的背景图像*/ body { background-image: url(/i/eg_bg_03.gif); background-repeat: repeat-y; }
4.背景图像的定位
可以利用 background-position 属性改变图像在背景中的位置。 为 background-position 属性提供值有很多方法。首先,可以使用一些关键字:top、bottom、left、right 和 center。通常,这些关键字会成对出现,不过也不总是这样。还可以使用长度值,如 100px 或 5cm,最后也可以使用百分数值。不同类型的值对于背景图像的放置稍有差异。下面的例子在 body 元素中将一个背景图像居中放置:
/*为body设置没有平铺而且居中的背景图像*/ body { background-image:url('/i/eg_bg_03.gif'); background-repeat:no-repeat; background-position:center; }
5.背景图像关联
如果文档比较长,那么当文档向下滚动时,背景图像也会随之滚动。当文档滚动到超过图像的位置时,图像就会消失。可以通过 background-attachment 属性防止这种滚动。background-attachment 属性的默认值是 scroll,也就是说,在默认的情况下,背景会随文档滚动。可以通过改变这个属性的值,声明图像相对于可视区是固定的(fixed),因此不会受到滚动的影响:
/*为body设置固定的背景*/ body { background-image:url(/i/eg_bg_02.gif); background-repeat:no-repeat; background-attachment:fixed }
三、background简写属性
可以通过background 简写属性在一个声明中设置所有的背景属性。
可以按顺序设置如下属性:
•background-color
•background-image
•background-repeat
•background-attachment
•background-position
如果不设置其中的某个值,也不会出问题,比如 background:#ff0000 url('smiley.gif'); 也是允许的。建议使用这个属性,而不是分别使用单个属性,因为这个属性在较老的浏览器中能够得到更好的支持,而且需要键入的字母也更少。
/*通过简写属性,在一个声明中设置所有的背景属性*/ body { background: #ff0000 url(/i/eg_bg_03.gif) no-repeat fixed center; }