当前位置:   article > 正文

QML之Timer定时器_qml timer running false

qml timer running false
QML的定时器Timer是一个不可视的对象,用法很简单,需要设置的值也很少。


Timer {
        id: timer_button;
        interval: 500;//设置定时器定时时间为500ms,默认1000ms
        repeat: false //是否重复定时,默认为false
        running: false //是否开启定时,默认是false,当为true的时候,进入此界面就开始定时
        triggeredOnStart: false // 是否开启定时就触发onTriggered,一些特殊用户可以用来设置初始值。
        onTriggered: {button.color = "green"  //定时触发槽,定时完成一次就进入一次
        }
        //restart ,start,stop,定时器的调用方式,顾名思义


    }


    Text {
        id: button
        anchors.centerIn: parent
        text: qsTr("Buton")
        font.pixelSize: 45
        color: "red"
        MouseArea{
            anchors.fill: parent
            onClicked: timer_button.start(); //开启定时器
        }
    }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/117455
推荐阅读
相关标签
  

闽ICP备14008679号