SoundPlayer使用的两种方法

SoundPlayer使用的两种方法_第1张图片

第一种:

using System.Windows.Forms;
using System.Media;
using System.IO;
using System.Resources;
using System.Reflection;  //Assembly类

using System;

 

SoundPlayer使用的两种方法_第2张图片

assembly = Assembly.GetExecutingAssembly(); //获取包含当前执行的代码的程序集。

assembly.GetManifestResourceStream("Resources.start.wav")  //从此程序集加载指定的清单资源。

2.

SoundPlayer使用的两种方法_第3张图片

 

你可能感兴趣的:(SoundPlayer使用的两种方法)