slider
Solved
QML and Qt Quick
-
how to change color of slider's handle !!
-
Here is a sample :
Slider{ id: control handle: Rectangle { x: control.leftPadding + control.visualPosition * (control.availableWidth - width) y: control.topPadding + control.availableHeight / 2 - height / 2 implicitWidth: 26 implicitHeight: 26 radius: 13 color: "blue" border.color: "#bdbebf" } }
See doc
-
Thank you very much, it worked.