I currently have an mp3 player in which a Label should show the name of the selected song. As I have it set right now it shows the full path to the song instead:
label1.Content = media.Source.ToString();
As the song can be selected there is no set location or filepath mentioned in the code, letting the user select a song from wherever they want.
I've tried media.Name.ToString(); but it only gave me the word "media", so Im probably missing something simple. Would like some help!
EDIT: Here's an example of what I want to see: "“TestMp3.mp3 is playing”"
Also would need to show "paused" or "stopped" when it is.