C

ImageFiles.MCU.base

定义资产的基路径。

描述

基路径确定计算资源 URI 的锚点。当使用 "files" 或 "directory" 属性定义的资源时,路径中省略了基本名称,如下例所示。

用法

此属性可接受在主应用程序 .qmlproject 文件或模块 .qmlproject 文件中。它接受一个字符串。

代码示例:

# In myproject.qmlproject file
ImageFiles {
    // Specify the base image paths declared in the current node
    MCU.base: "images"
    files: ["images/small/foo.png", "pics/small/bar.png"]
}

# In CustomItem.qml
Image {
    id: image1
    source: "/small/foo.png" // The base "images" is not included in the source path
}

Image {
    id: image2
    source: "/pics/small/bar.png" // image2 is not in images, "base" has not effect
}

此属性是在 QmlProject API 1.3 中引入的。

在某些 Qt 许可下可用。
了解更多信息。