qml treeview 图标_Qt qml treeview 树控件

1 import QtQuick 2.1

2 import QtQuick.Controls 1.0

3

4

5 /**6 树控件7 作者:surfsky.cnblogs.com 2014-108 协议:MIT 请保留本文档说明9 功能10 /递归树显示11 /左侧一个箭头,点击可展开显示子树12 /选中节点变色13 /节点点击事件14 /tag属性,携带类似id的数据15 异步方式,点击箭头后请求子数据。异步模式的话,节点要加上isLeaf属性,点击箭头后动态加载数据16 使用17 TreeView {18 anchors.fill: parent19 id: tree20 model: modelTree221 onSelectedItemChanged: console.log(item.text)22 }23 ListModel {24 id: modelTree225 Component.onCompleted: {26 modelTree2.append([27 {title: "Node 1"},28 {title: "Node 2", items: [29 {title: "Node 21", items:[30 {title: "Node 211"},31 {title: "Node 212"}32 ]},33 {title: "Node 22"}34 ]35 },36 {title: "Node 3"}37 ]);38 }39 }40 参考 http://qt-project.org/forums/viewthread/30521/41 */

42 ScrollView {43 id: view44 frameVisible: true

45 implicitWidth: 200

46 implicitHeight: 160

47

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值