Click here to Skip to main content
15,892,517 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I created a video in silverlight and added a slider control like this..
<Slider x:Name="timelineSlider"  Margin="0,1.5,0,0" HorizontalAlignment="Stretch"
                    Maximum="1"  Grid.Column="0"
                    ValueChanged="TimelineSlider_ValueChanged" 
                    Value="0"/>

xaml.cs
................

private void TimelineSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (duringTickEvent)
return;

Seek(timelineSlider.Value);

}
The problem is , this slider is not moving along with the video.We have to move it manually.How can I solve it? Plz help me.
Posted

1 solution

Please refer this it will help you
http://forums.silverlight.net/t/12172.aspx/1[^]
 
Share this answer
 
Comments
arti s.v 4-Sep-12 3:52am    
I went through this url..but still it is not working..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900