-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestBPage.qml
56 lines (41 loc) · 1.35 KB
/
TestBPage.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.1
Rectangle {
color: "#9E9E9E"
Rectangle {
color: "white"
height: parent.height - 10
width: parent.width
anchors.top: parent.top
anchors.topMargin: 5
anchors.left: parent.left
anchors.leftMargin: 0
Rectangle{
id: opBox
height: ((parent.height * .4) < 120) ? 120 : (parent.height * .4)
width: parent.width - 20
anchors.left: parent.left
anchors.leftMargin: 7
anchors.top: parent.top
anchors.topMargin: 5
Material.background: "white"
Button{
id: testButt0
width: parent.width - 20
height: 50
anchors.left: parent.left
anchors.leftMargin: 7
anchors.top: parent.top
anchors.topMargin: 5
Material.background: "white"
text:"Check Value Storage"
ToolTip.visible: hovered
ToolTip.text: qsTr("Choose Input Mode")
onClicked: {
ark.promptStorageExperiment();
}
}
}
}
}