Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Windows application written in C#/.NET.

How can I play a specific sound when a button is clicked?

share|improve this question
WinForms or WPF? – Richard Aug 17 '10 at 12:59

3 Answers

up vote 15 down vote accepted

You could use:

System.Media.SoundPlayer player = new System.Media.SoundPlayer(@"c:\mywavfile.wav");
player.Play();
share|improve this answer
2  
This is perfect answer because a new user can understand that SoundPlayer belongs to System.Media.... – user422831 Aug 22 '10 at 18:11

For Windows Forms one way is to use the SoundPlayer

private void Button_Click(object sender, EventArgs e)
{
    using (var soundPlayer = new SoundPlayer(@"c:\Windows\Media\chimes.wav")) {
        soundPlayer.Play(); // can also use soundPlayer.PlaySync()
    }
}

MSDN page

This will also work with WPF, but you have other options like using MediaPlayer MSDN page

share|improve this answer
Should probably be wrapped in a using statement as it inherits from Component – cjk Aug 17 '10 at 13:20
@ck - I was just showing the basics, but yes in production code wrap it up in a using. – ChrisF Aug 17 '10 at 13:24
Even better, in production code, create it only once and use it many times rather than creating it every time the button is pressed. – Shibumi Mar 8 '12 at 21:07
@Shibumi - yes. – ChrisF Mar 8 '12 at 21:51

You can use SystemSound

e.g. SystemSounds.Asterisk.Play();

share|improve this answer
2  
+1 cool, I didnt know that – Akash Kava Aug 17 '10 at 12:30
+1 for using built-in instances similar to SystemColors. – Shibumi Mar 8 '12 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.