I think playing sounds in a WPF could not be easier than this:

using

System.Media;

SoundPlayer

player = new SoundPlayer("Assets/type.wav");

player.Play();

And that's it :)