qml 锚点demo2

Posted lodger47

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qml 锚点demo2相关的知识,希望对你有一定的参考价值。

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Item {
        anchors.fill: parent
        Rectangle {
            id: rectLeft
            anchors.left: parent.left
            anchors.top: parent.top
            anchors.bottom: parent.bottom
            width: parent.width/3
            color: "red"
        }
        Rectangle {
            id: rectCenter
            /*
            anchors.horizontalCenter: parent.horizontalCenter
            */
            anchors.left: rectLeft.right
            anchors.top: parent.top
            anchors.bottom: parent.bottom
            width: parent.width/3
            color: "green"
        }
        Rectangle {
            id: rectRight
            anchors.left: rectCenter.right
            anchors.right: parent.right
            anchors.top: parent.top
            anchors.bottom: parent.bottom
//            width: parent.width/3
            color: "yellow"
        }
        /*
        Rectangle {
            id: rectRight
            anchors.right: parent.right
            anchors.top: parent.top
            anchors.bottom: parent.bottom
            width: parent.width/3
            color: "yellow"
        }
        */
    }
}

以上是关于qml 锚点demo2的主要内容,如果未能解决你的问题,请参考以下文章

26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段

是否有标准或首选标签类型可用于向某个位置添加额外的锚点/片段链接?

QML中如何基于loader更新底部控件

如何使用锚在 Flickable 中垂直间隔 QML 对象?

URL中的锚点(fragment片段标识符)是什么?(hash mark(#))(HTML 页面内定位)(之前学html不是学了吗?忘啦?)(SEO 搜索引擎优化)

QML:有条件地设置属性组的不同属性