コード例 #1
0
 private void Reload()
 {
     var mm = new FileMedia();
     mm.Path = files[index];
     vlcBox.Play(mm);
     Playing = true;
 }
コード例 #2
0
 public void Play()
 {
     var mm = new FileMedia();
     mm.Path = files[index];
     vlcBox.Play(mm);
     Playing = true;
 }