Qml之别名引用 发表于 2019-02-03 import的别名引用 使用as引用,将import QtQuick.Window 2.0 as My的QtQuick.Window 2.0别名为My引用. 属性的别名引用 使用alias别名引用,将property alias rectWidth: rect.width的rect.width别名为rectWidth引用. 例子1234567891011121314151617import QtQuick 2.5import QtQuick.Window 2.0 as MyMy.Window { property alias rectWidth: rect.width visible: true width: 640 height: 480 title: qsTr("Hello World") Rectangle { id: rect width: 100; height: 200 color: "red" }}