I'm customize a slider to making seeking bar for video. What I want is that when I touch the thumb the video stops. Then I can drag the thumb and display the video corresponding to the slider's value. This is my Slider in XAML
<Slider Style="{StaticResource SliderStyle1}" Grid.Column="1" x:Name="volumeSlider"
Width="Auto" VerticalAlignment="Center" ValueChanged="volumeSlider_ValueChanged"
DragLeave="volumeSlider_DragLeave" DragEnter="volumeSlider_DragEnter"
DragStarting="volumeSlider_DragStarting"
ManipulationStarted="volumeSlider_ManipulationStarted" ManipulationMode="All"
Tapped="volumeSlider_Tapped"/>
I've try many event but none of them occur when mouse pointer starts touching the thumb (Not tap or click). Does anyone know about such event?