如何打开麦克风属性窗口
单击按钮时如何打开麦克风属性窗口?
How do I open the microphone properties window when I click a button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
单击按钮时如何打开麦克风属性窗口?
How do I open the microphone properties window when I click a button?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
WPF 中没有内置任何内容来打开麦克风属性窗口。这是一个 .NET 功能。你使用 C# 吗?
如果您想在 Windows 上打开音量控制,只需运行
sndvol32.exe
可执行文件即可:另请参阅如何通过 C# 调整麦克风增益(需要在 XP 和 W7 上工作)...。
There is nothing built in to WPF for opening the Microphone properties window. This is a .NET feature. Are you using C#?
If you want to open the Volume Control on Windows, you could just run the
sndvol32.exe
executable:See also How to adjust microphone gain from C# (needs to work on XP & W7)….
对于 Windows XP,启动 sndvol32.exe 将打开混音器。如果您传递“-R”作为参数,它将直接带您进入“录音视图”,您可以在其中设置麦克风增益。
不幸的是,这在 Windows 7 中不起作用。Win 7 有一个名为 sndvol.exe 的程序,但它似乎没有记录设置模式。我发现的最佳解决方案是使用以下命令打开“声音”控制面板项目,并激活“录音”选项卡:
For Windows XP, starting sndvol32.exe will open the mixer. If you pass "-R" in as parameter, it will take you directly to the "Recording View", where you can set microphone gain.
Unfortunately this will not work in Windows 7. Win 7 has a program called sndvol.exe but it doesn't seem to have a record settings mode. The best solution I have found is to open up the Sound control panel item with the Recording tab active using the following command:
Windows10 中 C# 的正确代码,我猜也在 win7 中是:
The right Code in C# with Windows10, and I Guess also in win7 is: