Hi, Thank you!!!
Yes a have this in the splash.XAML
<MediaElement x:Name="espera" Width="590" Height="279" MediaEnded="finVideo"
Canvas.Left="0" Canvas.Top="0" Source="monito1.WMV" />
and this in te splash.xaml.cs
public splash2()
{
// Required to initialize variables
InitializeComponent();
espera.mediaended += finVideo;
}
private void finVideo(object sender, RoutedEventArgs e)
{
// MediaElement espera = (MediaElement)sender;
// espera.Position = new TimeSpan(0);
espera.Play();
}
}
The video play, but the loop dont. Sorry my English , thank youu!!