其他分享
首页 > 其他分享> > Qt Quick入门教程(14):等待控件

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

作者:互联网

qml提供了等待控件BusyIndicator

在这里插入图片描述

代码如下:

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属性,控制等待控件是否显示。

标签:控件,QtQuick,Qt,BusyIndicator,入门教程,Window,import,2.12
来源: https://blog.51cto.com/u_12570763/2845542