qml 相互调用
Posted cqbk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qml 相互调用相关的知识,希望对你有一定的参考价值。
1.qml文件名首字母一定要大写 不然会找不到
Test1.qml
import QtQuick 2.0 Rectangle { property alias buttonText1:textItem.text x: 100;y:30 width: 100;height: 30;color: "#ff0000" Text { id: textItem anchors.centerIn: parent font.pointSize: 10 style: Text.Raised color: "black" } }
调用qml文件名无强制要求
main.qml
import QtQuick 2.2 import QtQuick.Window 2.10 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Test1{ buttonText1:"xxxx" } }
在5.10中,每次更新Test1.qml都需要在main.qml中更新下buttonText1的内容要不然显示的不会更新
以上是关于qml 相互调用的主要内容,如果未能解决你的问题,请参考以下文章