c# 播放声音的四种方法
第一种是利用DirectX 1.安装了DirectX SDK(有9个DLL文件)。这里我们只用到MicroSoft.DirectX.dll 和 Microsoft.Directx.DirectSound.dll 2.引入DirectX 的DLL文件的名字空间: using Microsoft.DirectX; using Microsoft.DirectX.DirectSound; 3.建立设备 Device dv=new Device(); 4.设置CooperativeLevel。因为windows是多任务的系统,设备不是独占的 SecondaryBuffer buf=new
用户评论