private void Reload()
 {
     var mm = new FileMedia();
     mm.Path = files[index];
     vlcBox.Play(mm);
     Playing = true;
 }
 public void Play()
 {
     var mm = new FileMedia();
     mm.Path = files[index];
     vlcBox.Play(mm);
     Playing = true;
 }