qml ListView点击元素元素高亮实现(ListView移入到元素高亮实现)

前言

最近学习qml,在使用listview时想实现点击高亮效果,记录一波。

实现代码

import QtQuick 2.0
import QtQuick.Controls 2.15

ListView {
    width: 200
    height: 400
    model: ["Item 1", "Item 2", "Item 3", "Item 4", "Item 5"]
    
    delegate: Item {
        property bool hovered: false // 添加用于跟踪鼠标进入和退出状态的属性
        width: listView.width
        height: 40
        
        Rectangle {
            width: parent.width
            height: parent.height
            color: (listView.currentIndex === index || hovered) ? "lightblue" : "transparent"
            
            Text {
                anchors.centerIn: parent
                text: modelData
            }
            
            MouseArea {
                id: mouseArea
                anchors.fill: parent
                
                onClicked: {
                    listView.currentIndex = index
                }
                
                onEntered: {
                    hovered = true // 更新 hovered 属性来跟踪鼠标的进入和退出状态。
                }
                
                onExited: {
                    hovered = false // 更新 hovered 属性来跟踪鼠标的进入和退出状态。
                }
            }
        }
    }
}

实现效果

文章来源地址https://uudwc.com/A/12g9d

原文地址:https://blog.csdn.net/h1530687053/article/details/133307384

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年09月26日 15:04
下一篇 2023年09月26日 15:05