Slider - display value, or execute action while being dragged
Unsolved
QML and Qt Quick
-
Hello,
For Slider, is there a way to trigger an action whenever the value changes, while the slider is being dragged (i.e. not only when the handle is released)? Can the slider automatically display its value numerically as well?
Thank you -
. . . onValueChanged: { do.something = sliderValue.value }
or
. . . onSliderValueChanged: { do.something = sliderValue.value }