hai i need to play audio files in WPF
am using the following code
FileTextBox.Text = selectedFileName;
MediaPlayer mp = new MediaPlayer();
mp.Open(new Uri(selectedFileName, UriKind.Relative ));
mp.Play();
its working well, but it doesnt plays the sound. why ???