c#将Soundfile添加到安装程序并指向文件路径

时间:2016-08-31 19:51:52

标签: c# file path installation

我想为我的项目创建一个SetupFile。我使用了两种声音......这是我当前的代码(调试时工作正常):

SoundPlayer clckSound = new SoundPlayer(@"C:\Users\My Name\Downloads\Button Push.wav");
SoundPlayer wonSound = new SoundPlayer(@"C:\Users\My Name\Downloads\Applause.wav");

在“应用程序文件夹”中的“安装项目”中,我创建了另一个名为“Assets”的文件夹,其中放置了两个声音文件。

我尝试使用以下代码,但没有用。

SoundPlayer clckSound = new SoundPlayer(Application.StartupPath + "\\Assets\\Button Push.wav");
SoundPlayer wonSound = new SoundPlayer(Application.StartupPath + "\\Assets\\Applause.wav");

如何在代码中指定文件路径,以便在安装安装文件后正确播放声音?

感谢您的帮助!

0 个答案:

没有答案