How to play audio from resource

前端 未结 4 981
梦如初夏
梦如初夏 2020-12-20 21:32

I am trying to play audio from a resource using .NET Compact Framework. I added an audio file for the resource property in my application and am trying to use the below samp

4条回答
  •  情书的邮戳
    2020-12-20 22:13

    Try this:

    //I added the file as a audio resource in my project
    SoundPlayer player = new SoundPlayer(Properties.Resources.recycle);
    player.Play();
    

    I didn't try with .NET Compact Framework. But it is working for me in C#.

提交回复
热议问题