IAudioEndpointVolume 位于 .NET 类库中的哪个位置?

发布于 2024-12-29 08:32:37 字数 97 浏览 0 评论 0原文

我正在尝试编写一个控制 Windows 7 上的系统音量的应用程序,但我找不到任何有关 IAudioEndpointVolume 在 .NET 类库中的位置的文档。完整路径是什么?

I'm trying to write an application that controls the system volume on Windows 7 but I can't find any documentation on where IAudioEndpointVolume is located in the .NET class library. What is the full path?

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

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

发布评论

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

评论(2

冷清清 2025-01-05 08:32:37

核心音频 API (其中 IAudioEndpointVolume 位于)是<一href="http://msdn.microsoft.com/en-us/library/windows/desktop/dd370851%28v=vs.85%29.aspx" rel="nofollow">不是 .NET Framework 原生的。< /a>

但是,您可以使用此 Codeplex 项目,它为 Core 提供 .NET 包装器音频API。

The Core Audio API (where IAudioEndpointVolume is located) is not native to the .NET Framework.

However, you can use this Codeplex project, which provides .NET wrappers for the Core Audio API.

一百个冬季 2025-01-05 08:32:37

IAudioEndpointVolume 是操作系统 API 的一部分,位于 C++ dll 中。它不作为 .Net BCL 的一部分存在。如果您愿意,您可以 P/Invoke 到它,但是除非其他人编写了第 3 方版本,否则没有 .Net 包装器。

IAudioEndpointVolume is part of the operating system API's, it's in a C++ dll. It doesn't exist as part of the .Net BCL. You could P/Invoke into it if you wish, but there isn't a .Net wrapper unless someone else has written a 3rd party version.

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