摘要:
最近在做新加坡政府项目时用到了声音。在此记录一下整个实现过程。第一阶段实现:System.Media.SoundPlayer sp = new System.Media.SoundPlayer("./FireCoding.wav");sp.Load();sp.PlaySync()第二阶段的实现:后来声音要求发送到不同的音频设备上去于是使用了WinMM5.1class WaveLib { #region properties //int m_currentDeviceId = 0; private int CurrentDeviceId { get { int id = 1; try { id 阅读全文