I have a SpinCtrl on my window and want to process a spin event only on mouse up or arrow key up (end of spinning). Because there is no event like this, I wanted to use a mouse event. But if I bind EVT_LEFT_DOWN and EVT_LEFT_UP, EVT_SPIN is not sent anymore and the control does nothing.
How can I perceive an end of spinning event with a SpinCtrl? Is it possible to call the default event handler on EVT_LEFT_DOWN and the other events?
Who’s interested: I got a solution: