-
-
Save SpacePurr/738d95bdc717d8c35e3b3ac57ed101b4 to your computer and use it in GitHub Desktop.
Play music from resources
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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