When using the slider control, the mouseUp event only fires if mouseDown returns true. However, when mouseDown returns true, the slider cannot be moved. I want to move the slider and also detect when I stop sliding the slider (the mouseUp event). How can this be achieved?
I am trying to create something in the mousedrag event
me.Value = (me.Maximum - me.Minimum) * x / me.Width
But I don’t managed that yet, and I don’t know if it is the right way.
[quote=172982:@Alexandre Amato]When using the slider control, the mouseUp event only fires if mouseDown returns true. However, when mouseDown returns true, the slider cannot be moved. I want to move the slider and also detect when I stop sliding the slider (the mouseUp event). How can this be achieved?
I am trying to create something in the mousedrag event
me.Value = (me.Maximum - me.Minimum) * x / me.Width
But I don’t managed that yet, and I don’t know if it is the right way.[/quote]