private void Table_SelectionChanged(object sender, EventArgs e) { PlaylistItemModel playlistItemModel = (PlaylistItemModel)(((UI.Table)sender).GetSelection()); if (player != null) { player.Stop(); } if (playlistItemModel.Path.EndsWith(".mp3")) { player = this.fmodPlayer; } else { player = this.vlcPlayer; ShowVideoForm(); } player.LoadTrack(playlistItemModel.Path); player.SetVolume(volumeSlider.Value); player.Play(); //pm.GetSelection().Duration = (player.GetLength() > 359999) ? 0 : player.GetLength(); //pm.GetSelection().Name = player.GetName(); }
private void BtnPlayClickHandler(object sender, EventArgs e) { player.Play(); }