QMLButton背景初始化

本文介绍了在使用Qt构建界面时,遇到Button组件中normalColor变量未定义的错误,并提供了两种解决方法:一是将背景颜色设为固定值,二是将背景初始化放在Component.onCompleted钩子函数中。
摘要由CSDN通过智能技术生成

异常情况

Button {
        id: control
        text: qsTr("Button")
        width: 100
        height: 150
        property color normalColor: "green"
        property color hoverColor: "yellow"
        property color pressColor: "red"
        background: Rectangle {
            id: buttonBg
            color : normalColor
        }


        MouseArea{
            anchors.fill: parent
            hoverEnabled: true

            onEntered: {
                buttonBg.color = control.hoverColor
            }
            onPressed: {
                buttonBg.color = control.pressColor
            }
            onExited: {
                buttonBg.color = control.normalColor
            }
        }
    }

如果这样写会报错。
在这里插入图片描述

 ReferenceError: normalColor is not defined

因为里面 normalColor 是个变量,还没有初始化。

解决办法

一,将背景色改为固定值。

        background: Rectangle {
            id: buttonBg
            color : "green"
        }

二、写到初始化完成之后
也就是将背景初始化放到组件完成之后

Button {
        id: control
        text: qsTr("Button")
        width: 100
        height: 150
        property color normalColor: "green"
        property color hoverColor: "yellow"
        property color pressColor: "red"
        background: Rectangle {
            id: buttonBg
        }
        MouseArea{
            anchors.fill: parent
            hoverEnabled: true

            onEntered: {
                buttonBg.color = control.hoverColor
            }
            onPressed: {
                buttonBg.color = control.pressColor
            }
            onExited: {
                buttonBg.color = control.normalColor
            }
        }

        Component.onCompleted: {
            buttonBg.color = normalColor;
            console.log("Component.onCompleted")
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值