-
Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathmain.qml
36 lines (33 loc) · 878 Bytes
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
id: root
visible: true
width: 640
height: 480
title: qsTr("Hello World")
menuBar: MenuBar{
Menu{
title: "Demo"
Action{
text: "animation"
onTriggered: root_loader.setSource("qrc:/AnimationDemo.qml")
}
Action{
text: "state"
onTriggered: root_loader.setSource("qrc:/StateDemo.qml")
}
Action{
text: "transition"
onTriggered: root_loader.setSource("qrc:/TransitionDemo.qml")
}
}
}
Loader{
id: root_loader
anchors.fill: parent
anchors.margins: 10
source: "qrc:/TransitionDemo.qml"
}
}