c# WPF 如何在不声明新源的情况下从 mediaended 事件处理程序重复 MediaElement 播放?

c# WPF how to repeat MediaElement playback from mediaended event handler without declaring new source?(c# WPF 如何在不声明新源的情况下从 mediaended 事件处理程序重复 MediaElement 播放?)
本文介绍了c# WPF 如何在不声明新源的情况下从 mediaended 事件处理程序重复 MediaElement 播放?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在 WPF 中播放视频.我希望它循环播放,所以我所做的是当 mediaended 事件触发时,我播放我的视频.所以这会让我陷入困境.问题是为什么我必须再次创建新源?为什么我不能直接叫'play'?

I'm playing a video in WPF.i want it to loop so what I did is when the mediaended event fires, I play back my video. so this will get me a loop. prob is why do u I have to create new source again? why can't I just call 'play'?

出于某种原因,我不想在 XAML 中这样做.

I don't want to do it in XAML as for some reason.

看看我的代码片段:

string startPath System.IO.Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName);


public Window1()
    {
        InitializeComponent();
        media.Source = new Uri(startPath + @"playlist.wpl");
        media.play();
    }

private void Media_Ended(object sender, EventArgs e)
    {
        media.Source = new Uri(startPath + @"playlist.wpl"); //if i dont put this line, video wont play..seems like it cant get the source
        media.Play();
    }

或者是否有适当的方法来循环不是在 XAML 中而是在此处的 .cs 文件中?

or is there a proper way to loop NOT in XAML but in here .cs file?

推荐答案

不要在 Media_Ended 处理程序的开头重置 Source,而是尝试将 Position 值设置回起始位置.Position 属性是一个 TimeSpan,因此您可能想要...

Instead of resetting the Source at the start of your Media_Ended handler, try setting the Position value back to the start position. The Position property is a TimeSpan so you probably want something like...

private void Media_Ended(object sender, EventArgs e)
{
    media.Position = TimeSpan.Zero;
    media.Play();
}

这篇关于c# WPF 如何在不声明新源的情况下从 mediaended 事件处理程序重复 MediaElement 播放?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)