声音级别的结果始终为 0,无论我是静音还是最大音量。
怎么了 ?
[DllImport("winmm.dll")]
private static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume);
public int GetCurrentSoundValue()
{
uint currentVolume;
int result = waveOutGetVolume(IntPtr.Zero, out currentVolume);
return result;
}