4
TV 시리즈 프로젝트가 있고 mediaelement를 사용하고 있습니다. 하지만 탐색 바에 도움이 필요해. 이것을 추가하는 방법? MediaPlayerLauncher와 같은 탐색 막대 슬라이더를 만드는 방법은 무엇입니까?mediaelement seek bar를 추가하는 방법
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--TitlePanel contains the name of the application and page title-->
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<MediaElement x:Name="player1" MediaOpened="player1_MediaOpened" CurrentStateChanged="player1_CurrentStateChanged" />
<ListBox x:Name="alternatifliste" FontSize="20" FontStyle="Italic" FontWeight="Bold" Foreground="White" Margin="677,98,10,153" SelectionChanged="alternatifliste_SelectionChanged" />
</Grid>
<Button x:Name="play" Content="play" HorizontalAlignment="Left" Margin="94,336,0,0" Grid.Row="1" VerticalAlignment="Top" Click="play_Click"/>
<Button x:Name="stop" Content="stop" HorizontalAlignment="Left" Margin="331,336,0,0" Grid.Row="1" VerticalAlignment="Top" Click="stop_Click"/>
<Slider Name="timelineSlider" Margin="0,68,0,244" Grid.Row="1" ValueChanged="timelineSlider_ValueChanged" />
</Grid>
내 프로젝트 :
해당 코드 :
private void player1_MediaOpened(object sender, RoutedEventArgs e)
{
TimeSpan ts = player1.NaturalDuration.TimeSpan;
timelineSlider.Maximum = ts.TotalSeconds;
timelineSlider.SmallChange = 1;
timelineSlider.LargeChange = Math.Min(10, ts.Seconds/10);
}
private void seekBar_DragCompleted(object sender, DragCompletedEventArgs e)
{
player1.Position = TimeSpan.FromSeconds(timelineSlider.Value);
}
private void timelineSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
player1.Position = TimeSpan.FromSeconds(timelineSlider.Value);
}
private void player1_CurrentStateChanged(object sender, RoutedEventArgs e)
{
//timelineSlider.Value = player1.Position.Seconds;
}
내가 같이 원하는 :
@Chubosaurus 소프트웨어는 먼저 감사 대답, 내가 당신의 스타일을 시도하고있다,하지만이 같은 일부 오류가 하이 : http://www.hizliresimyukle.com/images/2014/09/19/1a4ac5합니다. jpg ! [문제] (http://www.hizliresimyukle.com/images/2014/09/19/1a4ac5.jpg) "지정된 값을 컬렉션에 할당 할 수 없습니다. 다음 유형이 필요합니다 :"UIElement " "Keyictionary"속성은 "IDictionary"에 포함 된 요소에서만 사용할 수 있습니다 \t 'Style'유형의 값을 'UIElementCollection'유형의 컬렉션 또는 사전에 추가 할 수 없습니다. " 어떻게 해결할 수 있습니까? –
오 헤헤, 당신은 그런 스타일을 추가 할 수 없습니다. 코드를 잘라내어 솔루션 폴더의 App.xaml 파일에 붙여 넣습니다. 나는 나의 대답을 업데이트 할 것이다. –
Chubosaurus, 그 작품을 완벽하게 감사드립니다! –