Reputation: 1
i have 7 songs in list box control.if i selected those songs from listbox that songs should be play in media element?
please help me.. thanks in advance.
Upvotes: 0
Views: 735
Reputation: 3468
You can use the Listbox
SelectionChanged
event for changing theMediaElement
source
property like
private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
MediaElement1.Source = new Uri(FilePath);
}
You will get more informatin about this in MediaElement in wpf
Upvotes: 1