Qml之自定义表格
2021/7/18 23:12:31
本文主要是介绍Qml之自定义表格,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
QML原生自带的表格控件--TableView。
原生态的样式上有点不太美观,可以尝试去修改下样式。
TableView { id: configDataTable focus: true anchors.fill: parent TableViewColumn{ role: "addr" ; title: "通讯地址";width:225 } TableViewColumn{ role: "name" ; title: "设备名称";width:240 } TableViewColumn{ role: "symbol" ; title: "备注标签";width: 240 } ScrollBar.vertical: ScrollBar { id: scroll_vertical anchors.right: parent.right anchors.rightMargin: 0 contentItem: Rectangle { visible: (scroll_vertical.size < 1.0) //implicitWidth: configDataTable.scrollBarWidth //color: configDataTable.scrollBarColor } } ScrollBar.horizontal: ScrollBar { id: scroll_horizontal anchors.bottom: parent.bottom anchors.bottomMargin: 0 anchors.left: parent.left anchors.leftMargin: -configDataTable.tableLeft contentItem: Rectangle { visible: (scroll_horizontal.size < 1.0) //implicitHeight: configDataTable.scrollBarWidth //color: configDataTable.scrollBarColor } } // 设置行的背景色 rowDelegate: Rectangle { height: 32 color: styleData.selected ? "#FF228FFF": "white" border.width: 1//#D0E7FF border.color: "#17000000" } // 设置表头的样式 headerDelegate: Rectangle { implicitWidth: 10 implicitHeight: 32 border.width: 1 border.color: "#17000000" color: "#ECF1F5" Text { anchors.left: parent.left anchors.leftMargin: 4 anchors.verticalCenter: parent.verticalCenter text: styleData.value color:"#73000000" } } model: ListModel { id: configDataModel ListElement{ addr: "1212"; name: "付水电费第三方"; symbol: "付水电费第三方" } ListElement{ addr: "1212"; name: "付水电费第三方"; symbol: "付水电费第三方付水电费第三方" } ListElement{ addr: "1212"; name: "付水电费第三方付水电费第三方"; symbol: "付水电费第三方" } ListElement{ addr: "1212"; name: "付水电费第三方"; symbol: "付水电费第三方" } ListElement{ addr: "1212"; name: "付水电费第三方"; symbol: "付水电费第三方付水电费第三方" } ListElement{ addr: "1212"; name: "付水电费第三方"; symbol: "付水电费第三方" } } }//TableView }// Rectangle
这篇关于Qml之自定义表格的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24怎么修改Kafka的JVM参数?-icode9专业技术文章分享
- 2024-12-23线下车企门店如何实现线上线下融合?
- 2024-12-23鸿蒙Next ArkTS编程规范总结
- 2024-12-23物流团队冬至高效运转,哪款办公软件可助力风险评估?
- 2024-12-23优化库存,提升效率:医药企业如何借助看板软件实现仓库智能化
- 2024-12-23项目管理零负担!轻量化看板工具如何助力团队协作
- 2024-12-23电商活动复盘,为何是团队成长的核心环节?
- 2024-12-23鸿蒙Next ArkTS高性能编程实战
- 2024-12-23数据驱动:电商复盘从基础到进阶!
- 2024-12-23从数据到客户:跨境电商如何通过销售跟踪工具提升营销精准度?