i want to play sound with click event of my button click event in my whole applciation,
i found 1 code that play sound when i click the button.
private void btn_Click(object sender, RoutedEventArgs e)
{
MediaPlayer mplayer = new MediaPlayer();
mplayer.Open(new Uri("ding.wav", UriKind.Relative));
mplayer.Play();
//our code...
}
i know this is not right solution, so please tell me if there are other solution, becoz i have to write this 3 line to each and every button click event and its tedious job.
please help to solve this problem.
waiting for reply...
thanks in advance