IAudioEndpointVolume 位于 .NET 类库中的哪个位置?
我正在尝试编写一个控制 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
核心音频 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.
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.