blob: b7a98f84d95fe1638955cc402605dbe2d137704c (
plain)
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
|
import QtQuick 2.6
import QtQuick.Layouts 1.1
import QtQuick.Controls 2.0
ColumnLayout {
anchors.left: parent.left
anchors.right: parent.right
Layout.minimumHeight: 125
Label {
font.pixelSize: 24
text: modelData.name
}
Label {
font.pixelSize: 24
text: modelData.value + " %"
}
Slider {
id: roleValueSlider
Layout.fillWidth: true
from: 0
to: 100
value: modelData.value
stepSize: 1
snapMode: Slider.SnapOnRelease
}
Binding {
target: modelData
property: "value"
value: roleValueSlider.value
}
}
|