博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
repeater的使用
阅读量:4123 次
发布时间:2019-05-25

本文共 1182 字,大约阅读时间需要 3 分钟。

ListModel{        id: myFlowListModel    }    Component{        id: myDelegate        Rectangle{            width: 92            height: 60            color: "transparent"            Image {                id: qwname                source: myImg                width: 92                height: 53            }            Text {                id: helloText                text: myString                font.pixelSize: 12            }        }    }    ScrollView{        anchors.top: parent.top        anchors.topMargin: 30        anchors.bottom: parent.bottom        anchors.left: parent.left        anchors.right: parent.right        clip: true        ScrollBar.horizontal.policy: ScrollBar.AlwaysOff        Flow{            id: myFlow            anchors.left: parent.left            anchors.leftMargin: 20            anchors.top: parent.top            width: outSideRec.width - 40            height: parent.height            spacing: 10            visible: true            Repeater{                model: myFlowListModel                delegate: myDelegate            }        }

repeater的delegate中最外层只能有一个控件,然后repeater会重复创建这个控件,但是如果没有最外层的rectangle包裹,就同时需要重复创建img和text,repeater无法创建

转载地址:http://vhmpi.baihongyu.com/

你可能感兴趣的文章
【5分钟代码练习】01—导航栏鼠标悬停效果的实现
查看>>
127个超级实用的JavaScript 代码片段,你千万要收藏好(中)
查看>>
8种ES6中扩展运算符的用法
查看>>
【视频教程】Javascript ES6 教程28—ES6 Promise 实例应用
查看>>
127个超级实用的JavaScript 代码片段,你千万要收藏好(下)
查看>>
【web素材】03-24款后台管理系统网站模板
查看>>
Flex 布局教程:语法篇
查看>>
年薪50万+的90后程序员都经历了什么?
查看>>
2019年哪些外快收入可达到2万以上?
查看>>
【JavaScript 教程】标准库—Date 对象
查看>>
前阿里手淘前端负责人@winter:前端人如何保持竞争力?
查看>>
【JavaScript 教程】面向对象编程——实例对象与 new 命令
查看>>
我在网易做了6年前端,想给求职者4条建议
查看>>
SQL1015N The database is in an inconsistent state. SQLSTATE=55025
查看>>
RQP-DEF-0177
查看>>
Linux查看mac地址
查看>>
Linux修改ip
查看>>
MySQL字段类型的选择与MySQL的查询效率
查看>>
Java的Properties配置文件用法【续】
查看>>
JAVA操作properties文件的代码实例
查看>>