在WPF中使用MediaElement创建一个简单的搜索媒体播放器

时间:2010-06-07 22:51:00

标签: c# wpf media-player mediaelement

我也在MSDN论坛上发布了这个 - 我希望它不是问题。

我基本上是在尝试创建一个基于WPF的视频播放器,它允许您在媒体中寻找。我正在尝试使用MediaTimeline实现它(我知道我可以更改位置属性,但我还有其他问题,我将在另一个问题中发布)。 XAML和代码隐藏在下面。

感谢您的期待...

MainWindow.xaml

<Window x:Class="WpfApplication5.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" SizeToContent="WidthAndHeight">
  <Grid>
    <Grid.RowDefinitions>
      <RowDefinition Height="Auto"/>
      <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>
    <MediaElement x:Name="mediaElement" Width="320" Height="240" Margin="4" LoadedBehavior="Manual"/>
    <Slider x:Name="slider" Grid.Row="1" Margin="4"/>
  </Grid>
</Window>

MainWindow.xaml.cs

using System;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Animation;

namespace WpfApplication5
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            var tl = new MediaTimeline(new Uri(@"c:\temp\!numa.wmv"));

            mediaElement.Clock = tl.CreateClock(true) as MediaClock;


            mediaElement.MediaOpened += (o, e) =>
            {
                slider.Maximum = mediaElement.NaturalDuration.TimeSpan.Seconds;
                mediaElement.Clock.Controller.Pause();
            };

            slider.ValueChanged += (o, e) =>
            {
                mediaElement.Clock.Controller.Seek(TimeSpan.FromSeconds(slider.Value), TimeSeekOrigin.BeginTime);
            };

        }
    }
}

2 个答案:

答案 0 :(得分:2)

您需要在MediaElement上设置ScrubbingEnabled =“True”,以便在搜索期间更新。

答案 1 :(得分:0)

MediaOpened事件实际上应该是将最大值设置为.TotalSeconds,并且您还应该像jesperll指出的那样将ScrubbingEnabled设置为True。