0
点赞
收藏
分享

微信扫一扫

使用qml加载gif图

人间四月天i 2022-03-21 阅读 49
qtqml

主要用到AnimatedImage控件即可

import QtQuick 2.5
import QtQuick.Window 2.2

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

    MouseArea {
        anchors.fill: parent
        onClicked: {
            Qt.quit();
        }
    }
    AnimatedImage {
        anchors.fill: parent
        source: "qrc:/braking_animation.gif"
    }
    Text {
        text: qsTr("Hello World")
        anchors.centerIn: parent
    }
}
举报

相关推荐

0 条评论