Hi, I am able to aassign a playlist to MediaPlayer like follwoing:
myMediaElement.Playlist = playList;
Where playList is the collection of PlaylistItem
.
But here my question is how can we assign just a playListItem to myMediaElement
. For Example:
myMediaElement.Playlist = playList.Items[0];
I don not want to used myMediaElement.GoToPlaylistItem(index);
Thanks,
Subhen