QML:ListView实现上下滑动的数字选择器

该文章展示了一个使用QtQuick2.15编写的数字选择器组件。通过ListView和Delegate来创建一个显示100个数字的列表,其中中间选中的数字会有颜色和字体大小的变化,实现了数字选择器的效果。
摘要由CSDN通过智能技术生成

一、效果图

 二、代码

import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
Window {
    visible: true
    width: 800
    height: 480
    title: "Number Selector"

    property color  textColor: "black"

    ListView {
        id: listView
        width: 200
        height: 300

        currentIndex: 2

        model: 100 // 设置数字范围
        contentWidth: width  //这三个属性设置ListView的显示范围,如果不设置会超出ListView的宽高显示
        contentHeight: height
        clip: true  //将超出ListView的部分裁剪掉

        delegate: Item {
            width: listView.width
            height: listView.height / 3   //这里除以3就可以显示三个数字

            Rectangle {
                id:rect1
                y:height        //这里很重要,delegate是绘制ListView的Rectangle,加了y:height(即绘制的Rectangle从第二个开始)所以当前项是第二个,然后在下面设置当前项的属性即可实现数字选择器的中间数字样式变化。
                width: parent.width
                height: parent.height

                border.color: "black"

                Text {
                    anchors.centerIn: parent
                    text: {
                        var currentIndex = index
                        if (currentIndex < 10) {
                            return "0" + (currentIndex+1).toString()
                        } else {
                            return (currentIndex+1).toString()
                        }
                    }
                    color: {     //设置当前项的颜色变化
                        if(index === listView.currentIndex)
                        {
                            console.log("red")
                            return "red"
                        }
                        else{
                            console.log("black")
                            return "black"
                        }
                    }
                    font.pointSize: {  //设置当前项的字体变化
                        if(index === listView.currentIndex)
                        {
                            return 20
                        }
                        else{
                            return 10
                        }
                    }

                }
            }
        }

        highlightRangeMode: ListView.StrictlyEnforceRange
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

优雅人字拖

老板大气

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值