View Single Post
marxian's Avatar
Posts: 2,448 | Thanked: 9,523 times | Joined on Aug 2010 @ Wigan, UK
#92
To make it transparent, you would also need to change the opacity. If you decide to do this, be aware that a child item inherits the opacity value from its parent. Lowering the opacity of the delegate will also lower the opacity of the text. To have a black transparent delegate with fully opaque white text would require

Code:
Item {
    id: delegate
    
    signal delegateClicked(int index)

    width: delegate.ListView.view.width
    height: 40

    Rectangle {
        id: background

        anchors.fill: delegate
        color: "black"
        opacity: 0.5 // or some other value
    }

    Text {
        id: titleText

        elide: Text.ElideRight
        text: name
        color: "white"
        font.pixelSize: standardFontSize
        anchors.fill: delegate
        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
    }
}
__________________
'Men of high position are allowed, by a special act of grace, to accomodate their reasoning to the answer they need. Logic is only required in those of lesser rank.' - J K Galbraith

My website

GitHub

Last edited by marxian; 2011-04-06 at 12:27.
 

The Following 4 Users Say Thank You to marxian For This Useful Post: