注意!如果焦点不在text则无法生效。

整型竟然能和字符串直接相加,立天!

按空格键改变text显示的内容并打印输出-LMLPHP

import QtQuick

Window {
    width: 640
    height: 480
    visible: true
    title: qsTr("2.2 属性")

    Rectangle {
        Text {
            id: thislabel
            font.pixelSize: 30
            font.family: "Consolas"
            x: 100; y:100

            //定义个变量
            property int custom_num: 0

            //定义一个函数
            function fc() {
                custom_num += 1
            }

            //text赋值
            text: "hello world " + custom_num

            //按空格键递增
            Keys.onSpacePressed: fc()

            //当文本改变,输出内容
            onTextChanged: console.log(text)

            focus: true
        }
    }
}

 

01-20 02:39