码迷,mamicode.com
首页 > 其他好文 > 详细

qml 相互调用

时间:2018-08-20 11:32:34      阅读:1225      评论:0      收藏:0      [点我收藏+]

标签:poi   quick   center   ISE   class   font   文件   main   black   

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 相互调用

标签:poi   quick   center   ISE   class   font   文件   main   black   

原文地址:https://www.cnblogs.com/CQbk/p/9504326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!