Skip to content

Instantly share code, notes, and snippets.

@SpacePurr
Created April 24, 2020 13:51
Show Gist options
  • Save SpacePurr/738d95bdc717d8c35e3b3ac57ed101b4 to your computer and use it in GitHub Desktop.
Save SpacePurr/738d95bdc717d8c35e3b3ac57ed101b4 to your computer and use it in GitHub Desktop.
Play music from resources
Uri uri = new Uri("pack://application:,,,/WpfQuiz;component/resources/sounds/main_theme.wav", UriKind.RelativeOrAbsolute);
StreamResourceInfo str = Application.GetResourceStream(uri);
_player = new SoundPlayer(str.Stream);
_player.Play();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment