I'm using a Slider
control to allow the user to seek to a specific position in a video stream. I bound the Value
property of the Slider
to the Position
property of a MediaElement
.
My problem is that when the user drags the slider's thumb, the MediaElement begins seeking to the new position immediately, but I'd like to defer seeking until the user releases the thumb. I'd like to update the binding only after the user stops dragging the thumb (or detect when this happen and update the player position manually, not necessarily using a binding)
Is it possible, and how? As a last resort, I'll probably create a custom control and use it instead of the Slider
, but I'd prefer a solution that uses a Slider
.