【QML COOK】- 009-组件(Components)

发布时间:2024年01月16日

组件对于QML来说就如同C++的类一样。可以用同一个组件创建多个对象。

组件有两种定义方式:

  • 用独立的.qml文件定义组件
  • 在.qml文件中用Component对象定义组件

1. 创建项目,新建文件IndependentComponent.qml

import QtQuick

Rectangle {
    id : root
    Text {
        id: componentText

        anchors.fill: parent
        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        font.pixelSize: 40
        text: qsTr("文件定义的组件")
    }
}

2. 编辑main.qml

import QtQuick

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

    Component {
        id : embeddedComponent
        Rectangle {
            id : root
            Text {
                id: componentText

                anchors.fill: parent
                horizontalAlignment: Text.AlignHCenter
                verticalAlignment: Text.AlignVCenter
                font.pixelSize: 40
                text: qsTr("Component定义的组件")
            }
        }
    }

    Loader {
        id : embeddedComponentLoader
        sourceComponent: embeddedComponent
        x : 270
        y : 100
        width: 100
        height: 30
        onLoaded: {
            console.log("嵌入式组件创建成功")
        }
    }

    IndependentComponent {
        x : 270
        y : 200
        width : 100
        height : 30
    }
}

在独立.qml中定义组件,就是在qml文件中编写任何你需要的内容,本例写了一个Rectangle里面包含了一个Text。定义完后qml的文件名就是组件名,可以在其他qml中直接使用。比如本例在main.qml中直接使用IndependentComponent定义了第二个控件

用Component对象定义组件就是Component对象中定义任何你需要的内容。然后通过Loader对象创建组件对象。Loader通过Component对象的id来创建Component对象,本例中为embeddedComponentLoader

可以多次使用loader或IndependentComponent创建多个对象。本例中各自只创建了一个对象。

3. 运行程序

文章来源:https://blog.csdn.net/patronwa/article/details/135614681
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。