> -----Original Message-----
> From: interest-bounces+jpnurmi=digia....@qt-project.org [mailto:interest-
> bounces+jpnurmi=digia....@qt-project.org] On Behalf Of Nils Jeisecke
> Sent: 1. maaliskuuta 2013 17:55
> To: interest@qt-project.org
> Subject: [Interest] Qt Quick 2.0 Desktop Components ScollBar
> 
> Hi,
> 
> I've just discovered that ScrollBar was recently made private within the
> Desktop Components (change id
> Ifeaa4aeaa01c0c274eed7c794e7bed273d40092c).
> 
> What's the best way to get a standard ListView decorated with scrollbars
> now?
> 

Hi,

You can put the ListView inside a ScrollView:

    ScrollView {
        anchors.fill: parent
        ListView {
            ...
        }
    }

--
J-P Nurmi

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to