问题描述
- c#用trackbar控件调节音量,下面的代码是什么意思
-
专业回答
#region 音量
[DllImport("winmm.dll")]
public static extern long waveOutSetVolume(UInt32 deviceID, UInt32 Volume);
[DllImport("winmm.dll")]
public static extern long waveOutGetVolume(UInt32 deviceID, out UInt32 Volume);
解决方案
调用了两个windows api函数来设置音量。api函数是操作系统提供的dll调用。
时间: 2024-09-24 05:15:44