qml Rectangle中clip属性效果

import QtQuick 2.2
 
Rectangle {
    id: root
    width: 800;
    height: 600
 
    Rectangle {
        id: side
        anchors {
            top: parent.top
            left: parent.left
        }
 
        width: 80
        height: 80
        color: "lightblue"
        Text {
            id: test
            anchors.centerIn: parent
            text: "测试"
        }
 
        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (root.state == '')
                    root.state = "minSize"
                else
                    root.state = ''
 
            }
        }
    }
 
    Rectangle {
        id: menu
        width: 400
        height: 100
        color: "red"
        anchors.left: side.right
        anchors.top: parent.top
        //没有这个属性com1,com2不会跟着收缩
        clip: true
        Rectangle {
            id: com1
            width: 30
            height: 50
            color: "green"
            anchors.left: parent.left
            anchors.top: parent.top
        }
 
        Rectangle {
            id: com2
            width: 30
            height: 50
            color: "gray"
            anchors.left: parent.left
            anchors.top: parent.top
            anchors.leftMargin: 30
        }
 
    }
 
    states:[
        State {
            name: "minSize"
            PropertyChanges {
                target: menu
                height: 10
            }
        }
    ]
 
    transitions: [
       Transition {
            NumberAnimation {
                target: menu
                property: "height";
                duration: 200;
                easing.type: Easing.InOutQuad;
            }
        }
 
    ]
 
}
 

运行效果

点击测试按钮

注释 clip:true

点击测试按钮

menu矩形里的com1,com2不会跟着收缩

矩形里的



                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值