0

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

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

谢谢你看...

主窗口.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>

主窗口.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);
            };

        }
    }
}
4

2 回答 2

2

您需要在 MediaElement 上设置 ScrubbingEnabled="True" 以使其在搜索期间更新。

于 2010-09-30T14:19:29.727 回答
1

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

于 2011-04-22T23:26:59.087 回答