first commit
This commit is contained in:
20
qml/content/LabeledSlider.qml
Normal file
20
qml/content/LabeledSlider.qml
Normal file
@@ -0,0 +1,20 @@
|
||||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
|
||||
Slider {
|
||||
property string lableText: qsTr("Text")
|
||||
stepSize: 1
|
||||
|
||||
Label {
|
||||
text: parent.lableText
|
||||
anchors.left: parent.left
|
||||
anchors.bottom: parent.top
|
||||
bottomPadding: -12
|
||||
}
|
||||
Label {
|
||||
text: parent.value
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.top
|
||||
bottomPadding: -12
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user