c#使用System.Media.SoundPlayer播放资源文件中的wav文件
2018-07-20 来源:open-open
c#使用System.Media.SoundPlayer播放资源文件中的wav文件
using System.Reflection; using System.IO; using System.Resources; using System.Media; using System.Diagnostics; namespace CN.OutOfMemory.Csharp { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { Assembly assembly; Stream soundStream; SoundPlayer sp; assembly = Assembly.GetExecutingAssembly(); sp = new SoundPlayer(assembly.GetManifestResourceStream("Yournamespace.Dreamer.wav")); sp.Play(); } } } /*SoundPlayer sp = new SoundPlayer(global::WindowsApplication1.Properties.Resources.yoursoundfilename); */
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
最新资讯
热门推荐