How to use relative path to Resources folder in C# Window Form application?

13,398

Create a resources bundle and store it in the bundle, and just reference the sound file within the bundle.

IE: when creating a winforms project by default, you'll see a Resources.resx file in the Properties folder. Add a resource there, and then reference it from code:

Properties.Resources.String1;
Share:
13,398
roxrook
Author by

roxrook

C++ is fun!

Updated on July 26, 2022

Comments

  • roxrook
    roxrook almost 2 years

    I want to play sound when the window form loaded,

    SoundPlayer sound = new SoundPlayer( @"song.mp3" );
    sound.Play();
    

    When distributing this project to others, I can't use absolute path. So how can I use relative path in this case? Where the song.mp3 is located in "C:\Users\xxx\Desktop\Game\Resources\song.mp3"?

    Thanks,