Is possible "StopMonitoring"? nAudio

时间:2015-07-31 20:10:33

标签: naudio

I have a combobox with input devices, and i want to monitor the selected device. I do not understand is how I can stop "BeginMonitoring" to stop monitoring the current device, to monitor the newly selected device. Thx!

1 个答案:

答案 0 :(得分:0)

第一个抱歉发布为na答案 - 我不再发表评论,因为我的费率会随着时间的推移而降低。

自从我使用nAudio以来已经有一段时间了,说实话,我对如何使用它创建na Mp3和Wav播放器有一些了解。 我仍然想用我的知识帮助你。 我没有在这台计算机上安装Visual Studio来测试我想要发送给你的代码......但是通过了解nAudio的工作方式,我可以尝试一下。

on" ComboBox_Selection_Changed(){}"   - 更新所选项目(即:使用"公共字符串"。通常从另一个类调用。并使用Getters和Setters进行调用)   - 查找" BeginMonitoring"属性和/或尝试将其结果转换为字符串。 (我会这样做是为了理解它的监控内容;因为我不熟悉那种特殊的功能)。

  • 您可以使用" BeginMonitoring"中的结果(字符串)。并使用它的值来获取和设置状态。

monitored_device = comboBox_Sel.Item;

然后如果字符串值是X(做X做什么) beginmonitoring = true;

然后如果字符串值是Y(做Y做什么) beginmonitoring = false

希望这有助于你搞清楚。

最好的问候