first commit

This commit is contained in:
2025-12-18 09:19:39 +08:00
parent 1bc7adf399
commit d4975da9a5
24 changed files with 2506 additions and 0 deletions

View 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
}
}