我想要當用戶按下一個按鈕添加通知聲音文件在C#
private void button1_Click(object sender, EventArgs e)
{
SoundPlayer simpleSound = new SoundPlayer(@"C:\Users\.........\ambbrdg7.wav");
simpleSound.Play();
}
我想將ambbrdg7.wav添加到我的exe文件,以確保添加通知報警到exe我的程序始終可以訪問此文件
如何成爲其路徑 – motaz99 2012-08-17 00:29:20
如果您將它添加到您的項目並將其設置爲內容,那麼它應該與您的應用程序相同的路徑,如果您將它添加爲您將使用http://msdn.microsoft的資源。 com/en-us/library/system.resources.resourcemanager(v = vs.80).aspx 編輯:@Hans Passant對資源有正確答案。 – 2012-08-17 00:49:47