Quick Controls 2 Slider "update value while dragging" possible?
-
How does one make a Quick Controls 2 Slider update its current value continuously while
the handle is moved.In Quick Controls, a Slider had the updateValueWhileDragging : bool property the default
value of which was true.In Quick Controls 2, there is no equivalent property.
-
You can use Slider::position to get continuous updates. QtQuick Controls 2.1 in Qt 5.8 introduces Slider::valueAt(pos) to help converting a normalized position ([0.0..1.0]) to a value if you have a "complex" range.
-
You can use Slider::position to get continuous updates. QtQuick Controls 2.1 in Qt 5.8 introduces Slider::valueAt(pos) to help converting a normalized position ([0.0..1.0]) to a value if you have a "complex" range.
-
You can use Slider::position to get continuous updates. QtQuick Controls 2.1 in Qt 5.8 introduces Slider::valueAt(pos) to help converting a normalized position ([0.0..1.0]) to a value if you have a "complex" range.