Search code examples
c#wpfbeep

Making A Beep in C# WPF


Is there any ways to make a beep sound in C# WPF?

I've been looking for WPF beeping, but all I could find was Beeping in normal windows form.


Solution

  • You can make a "beep" sound using:

    SystemSounds.Beep.Play();