Guest User

Untitled

a guest
Jun 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <MediaElement x:Name="bgvideo" Width="800" Height="600"Source="/Videos/BG_LOOP_BIG.wmv" />
  2.  
  3. bgvideo.Source = new Uri(@"pack://application:,,,/Videos/BG_LOOP_BIG.wmv", UriKind.Absolute);
  4.  
  5. bgvideo.Source = new Uri(@"/Videos/BG_LOOP_BIG.wmv");
  6.  
  7. bgvideo.Source = new Uri(@"C:SomeFolderVideosBG_LOOP_BIG.wmv");
  8.  
  9. <MediaElement LoadedBehavior="Manual" x:Name="bgvideo" Width="800" Height="600" Source="Videos/BG_LOOP_BIG.wmv" />
  10.  
  11. bgvideo.Play()
Add Comment
Please, Sign In to add comment