Qt Quick入门教程(14):等待控件

qml提供了等待控件BusyIndicator

Qt Quick入门教程(14):等待控件

代码如下:

import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.5


Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    BusyIndicator{
        id:busy
        running: true
        anchors.centerIn: parent
    }
}

BusyIndicator的属性比较少。
可以在其它地方设置running属性,控制等待控件是否显示。

上一篇:Qt Quick入门教程(1): Qt Quick与QML介绍


下一篇:android控件的对齐方式(转)