如何将路径源绑定到MediaElement UWP

时间:2016-03-14 01:14:07

标签: c# windows-phone-8.1 win-universal-app

我想将一个mp4视频绑定到MediaElement,但是如果我在XAML中使用绝对源代码就是Works:

<MediaElement x:Name="mediaSimple" 
          Source="Videos/video1.mp4" 
          Width="400" AutoPlay="False"/>

我试着这样做:

 <StackPanel BorderBrush="Black" Orientation="Vertical">
             <MediaElement  AutoPlay="True"  Width="150" Height="150"  IsLooping="True" Source="{Binding way}" />
             </StackPanel>

和我的班级:

public class Paths
{
    public Uri Way { get; set; }
}

我的代码背后:

public void Fill()
    {
        lista.Add(new Paths
        {
            Way = new Uri("ms-appx:///Assets/teste.mp4",UriKind.RelativeOrAbsolute),   
        });

根本不工作,只要我做XAML就可以工作!

0 个答案:

没有答案