Tuesday, July 26, 2016

using sound in wpf

add wav file as Embedded Resource in file structure for e.g. resources/sounds.blah.wav

var _assembly = Assembly.GetExecutingAssembly();
                SoundPlayer sp = new SoundPlayer(_assembly.GetManifestResourceStream("Blah.Resources.Sounds.Blah.wav"));

                sp.Play();

No comments:

Post a Comment