qml listView添加滚动条

本文介绍如何在QMLListView中添加垂直滚动条并实现元素拖动等功能。通过设置ScrollBar.vertical属性及interactive等参数,使QMLListView具备更好的交互体验。
🔍 VisionCore Pro | 多模态智能语义分析平台

🔍 VisionCore Pro | 多模态智能语义分析平台

AI应用
PyTorch
CLIP

VisionCore Pro 是一款基于 OpenAI CLIP (Contrastive Language-Image Pre-training) 架构的企业级多模态视觉分析工具。通过先进的深度学习技术,该平台实现了图像与文本之间的深度语义对齐,支持零样本(Zero-shot)图像识别与分类,为企业视觉资产数字化、智能监控及内容审核提供高效的技术支撑。

开发环境:window10  Qt5.13.1

qml listView在编程中用得比较广泛,元素多了,我们希望能够看到滚动条,并且可以托动,默认的listView是不带滚动条的,我们可以设置ScrollBar.vertical的属性,添加滚动条。

其中有几个属性也特别重要:

interactive: 这个属性表示元素是否可以拖动,

orientation:设置列表的方向

clip:是否可裁剪,默认是false,这个时候向上拖动会有一个项超出界限,所有一般设置为true

具体的代码示例如下:

import QtQuick 2.13
import QtQuick.Window 2.13
import QtQuick.Controls 2.12

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Rectangle {
        id: listRect
        color: "green"
        anchors.fill: parent


        //菜单
        ListModel {
            id: listRouteModel
            ListElement {titleText: qsTr("卤水鸡翅"); titleColor: "white"}
            ListElement {titleText: qsTr("夫妻肺片"); titleColor: "white"}
            ListElement {titleText: qsTr("糖醋小排"); titleColor: "white"}
            ListElement {titleText: qsTr("面拖大排"); titleColor: "white"}
            ListElement {titleText: qsTr("家乡蛋饺"); titleColor: "white"}
            ListElement {titleText: qsTr("腊味合蒸"); titleColor: "white"}
            ListElement {titleText: qsTr("水笋烧肉"); titleColor: "white"}
            ListElement {titleText: qsTr("剁椒鸭块"); titleColor: "white"}
            ListElement {titleText: qsTr("粉蒸大肉"); titleColor: "white"}
            ListElement {titleText: qsTr("梅菜烧肉"); titleColor: "white"}
            ListElement {titleText: qsTr("双菇肉片"); titleColor: "white"}
            ListElement {titleText: qsTr("红烧大肉"); titleColor: "white"}
            ListElement {titleText: qsTr("黄豆焖鸡"); titleColor: "white"}
            ListElement {titleText: qsTr("咖哩鸡块"); titleColor: "white"}
            ListElement {titleText: qsTr("茄汁排条"); titleColor: "white"}
            ListElement {titleText: qsTr("椒盐排条"); titleColor: "white"}
            ListElement {titleText: qsTr("小炒鸭块"); titleColor: "white"}
            ListElement {titleText: qsTr("蚝油牛肉"); titleColor: "white"}
            ListElement {titleText: qsTr("麻辣翅根"); titleColor: "white"}
            ListElement {titleText: qsTr("杭椒牛柳"); titleColor: "white"}
            ListElement {titleText: qsTr("清蒸咸肉"); titleColor: "white"}
        }

        ListView {
            id: listRouteView
            width: 100; height: 320
            anchors.top: parent.top; anchors.topMargin: 50;
            anchors.left: parent.left; anchors.leftMargin: 50
            orientation: ListView.Vertical//垂直列表
            interactive: true;//元素可拖动
            clip: true //
            ScrollBar.vertical: ScrollBar {
                id: scrollBar
                onActiveChanged: {
                    console.log("onActiveChanged========================")
                    active = true;
                }
                Component.onCompleted: {
//                    scrollBar.handle.color = "yellow"
//                    scrollBar.active = true;
//                    scrollBar.handle.width = 10;
                    console.log("Component.onCompleted========================")
                }
            }

            model: listRouteModel;
            focus: true
            delegate: tabDelegate

        }
        //Component
        Component {
            id: tabDelegate
            Rectangle {
                width: 100; height: 25;
                color: (listRouteView.currentIndex === index) ? "blue": "transparent"
                //标题
                Text {
                    width: parent.width - 3; height: 25;
                    anchors.left: parent.left;
                    anchors.leftMargin: 0;
                    anchors.top: parent.top
                    anchors.topMargin: 0
                    font.pixelSize: 16;
                    color: (listRouteView.currentIndex === index) ? "red" : titleColor
                    text: titleText
                    horizontalAlignment: Text.AlignHCenter; //文字水平居中对齐
                    verticalAlignment: Text.AlignVCenter;//文字垂直居中对齐
                }

                MouseArea {
                    anchors.fill: parent
                    onClicked: {
                        listRouteView.currentIndex = index
                        //console.log("clicked tab=================" + index)
                        //selectIndex(index)
                        console.log("clicked currentIndex================" + listRouteView.currentIndex)
                    }
                }
            }
        }//end Component

    }
}

2020-03-25 更新

您可能感兴趣的与本文相关的镜像

🔍 VisionCore Pro | 多模态智能语义分析平台

🔍 VisionCore Pro | 多模态智能语义分析平台

AI应用
PyTorch
CLIP

VisionCore Pro 是一款基于 OpenAI CLIP (Contrastive Language-Image Pre-training) 架构的企业级多模态视觉分析工具。通过先进的深度学习技术,该平台实现了图像与文本之间的深度语义对齐,支持零样本(Zero-shot)图像识别与分类,为企业视觉资产数字化、智能监控及内容审核提供高效的技术支撑。

内容概要:本文系统梳理了多个科研领域的前沿研究与技术实现,重点涵盖FDTD方法中的完美匹配层(PML)研究,以及Matlab/Simulink在电磁、电力、控制、通信、信号处理、图像处理、路径规划、能源系统优化等领域的仿真与算法实现。文中列举了大量基于Matlab和Python的科研案例,如风电功率预测、负荷预测、无人机三维路径规划、电池系统故障诊断、雷达模拟、通信编码、微电网优化调度等,并强调结合智能优化算法(如粒子群、遗传算法、深度学习等)提升系统性能。同时,提供了丰富的代码资源与仿真模型,涵盖永磁同步电机控制、逆变器设计、多智能体任务分配、虚拟电厂调度等复杂系统,助力科研人员快速开展复现实验与创新研究。; 适合人群:具备一定编程基础,熟悉Matlab/Python工具,从事电气工程、自动化、通信、人工智能、新能源、控制科学等相关领域研究的研发人员及研究生。; 使用场景及目标:① 学习并实现FDTD仿真中的PML边界条件以有效抑制数值反射;② 掌握Matlab/Simulink在多物理场建模、控制系统设计与优化算法中的综合应用;③ 借助提供的代码资源完成科研复现、课程设计、竞赛项目或工程原型开发; 阅读建议:此资源以科研实战为导向,不仅提供理论方法,更强调代码实现与仿真验证。建议读者结合自身研究方向,按目录顺序查阅相关模块,下载配套代码进行调试与二次开发,以达到学以致用、融会贯通的目的。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值