SpinBox Wheel Event
QML and Qt Quick
4
Posts
2
Posters
1.8k
Views
1
Watching
-
Hi,
It has "value":http://qt-project.org/doc/qt-5/qml-qtquick-controls-spinbox.html#value-prop property so you can use onValueChanged handler.
-
There's no direct way to get these but as a workaround for the mouse wheel you could define a MouseArea for the Spinbox and then use onWheel to detect changes by MouseWheel. You will need a flag to hold this change.