QML属性变化信号

格式

onChanged

例子

import QtQuick 2.0

TextInput {
    text: "Change this!"
    onTextChanged: {//text属性信号处理
        console.log("Text has changed to:", text)
    }
    MouseArea{
        anchors.fill:parent
        onClicked: {
           textChanged()//调用text属性信号         
        }
   }
}

转载于:https://my.oschina.net/TemetNosce/blog/861523

你可能感兴趣的:(QML属性变化信号)