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!
答案 0 :(得分:0)
第一个抱歉发布为na答案 - 我不再发表评论,因为我的费率会随着时间的推移而降低。
自从我使用nAudio以来已经有一段时间了,说实话,我对如何使用它创建na Mp3和Wav播放器有一些了解。 我仍然想用我的知识帮助你。 我没有在这台计算机上安装Visual Studio来测试我想要发送给你的代码......但是通过了解nAudio的工作方式,我可以尝试一下。
on" ComboBox_Selection_Changed(){}" - 更新所选项目(即:使用"公共字符串"。通常从另一个类调用。并使用Getters和Setters进行调用) - 查找" BeginMonitoring"属性和/或尝试将其结果转换为字符串。 (我会这样做是为了理解它的监控内容;因为我不熟悉那种特殊的功能)。
monitored_device = comboBox_Sel.Item;
然后如果字符串值是X(做X做什么) beginmonitoring = true;
然后如果字符串值是Y(做Y做什么) beginmonitoring = false
希望这有助于你搞清楚。
最好的问候