mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
add new snippet 'hourglass'; revision of 'help.htm'
This commit is contained in:
parent
ec4c140f9c
commit
6a664c9d27
11 changed files with 71 additions and 1 deletions
18
snippets/busy-simple/qml/main.qml
Normal file
18
snippets/busy-simple/qml/main.qml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import QtQuick 2.15
|
||||
import QtQuick.Controls 2.15
|
||||
|
||||
Item {
|
||||
width: 300
|
||||
height: 500
|
||||
|
||||
AnimatedImage {
|
||||
objectName: "busy"
|
||||
anchors.centerIn: parent
|
||||
width: 64
|
||||
height: width
|
||||
z: 10
|
||||
source: "img/busy.gif"
|
||||
visible: playing
|
||||
playing: false
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue