码迷,mamicode.com
首页 > 其他好文 > 详细

锚布局

时间:2019-08-25 14:20:46      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:upload   color   ebe   ogr   ott   width   alt   rectangle   tps   

锚布局
技术图片

Item {
        id: item
        anchors.fill: parent
        Rectangle {
            id: rec
            width: 150
            height: 50
            color: "red"
            anchors.centerIn: parent
        }

        Button {
            anchors.top: rec.bottom
            anchors.left: rec.left
            anchors.right: rec.right
        }
    }

技术图片

Button {
            anchors.horizontalCenter: parent.horizontalCenter
//            anchors.verticalCenter: parent.verticalCenter
        }

技术图片

Button {
            anchors.margins: 10
            anchors.fill:parent
        }

技术图片

Button {
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.horizontalCenterOffset: -10
        }

效果图省略

锚布局

标签:upload   color   ebe   ogr   ott   width   alt   rectangle   tps   

原文地址:https://www.cnblogs.com/clear-love/p/11407561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!