如何打开麦克风属性窗口

发布于 2024-10-05 08:26:15 字数 24 浏览 3 评论 0原文

单击按钮时如何打开麦克风属性窗口?

How do I open the microphone properties window when I click a button?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

海之角 2024-10-12 08:26:15

WPF 中没有内置任何内容来打开麦克风属性窗口。这是一个 .NET 功能。你使用 C# 吗?

如果您想在 Windows 上打开音量控制,只需运行 sndvol32.exe 可执行文件即可:

string lWinDir = Environment.GetEnvironmentVariable("windir");
string lSndVolPath = lWinDir + @"\system32\sndvol32.exe";
Process lVolumeControl = Process.Start(lSndVolPath);

另请参阅如何通过 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:

string lWinDir = Environment.GetEnvironmentVariable("windir");
string lSndVolPath = lWinDir + @"\system32\sndvol32.exe";
Process lVolumeControl = Process.Start(lSndVolPath);

See also How to adjust microphone gain from C# (needs to work on XP & W7)….

只有一腔孤勇 2024-10-12 08:26:15

对于 Windows XP,启动 sndvol32.exe 将打开混音器。如果您传递“-R”作为参数,它将直接带您进入“录音视图”,您可以在其中设置麦克风增益。

sndvol32.exe -R

不幸的是,这在 Windows 7 中不起作用。Win 7 有一个名为 sndvol.exe 的程序,但它似乎没有记录设置模式。我发现的最佳解决方案是使用以下命令打开“声音”控制面板项目,并激活“录音”选项卡:

control mmsys.cpl,,1

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.

sndvol32.exe -R

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:

control mmsys.cpl,,1
守护在此方 2024-10-12 08:26:15

Windows10 中 C# 的正确代码,我猜也在 win7 中是:

System.Diagnostics.Process.Start("mmsys.cpl",",1");

The right Code in C# with Windows10, and I Guess also in win7 is:

System.Diagnostics.Process.Start("mmsys.cpl",",1");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文