0

当我使用的代码为:

My.Computer.Audio.Play(My.Resources.audio_here, AudioPlayMode.Background)
4

3 回答 3

1

最后,我花了 10 多个小时尝试不同的选项并将 C++ 和 C# 代码翻译成 VB.net,最后这似乎至少对我有用。自己试试

Imports System.Runtime.InteropServices
Imports Microsoft.Win32

Public Class Form1

<DllImport("winmm.dll")>
Public Shared Function waveOutSetVolume(ByVal h As IntPtr, ByVal dwVolume As UInteger) As Integer
End Function


Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    Me.Show()

    Dim keyValue As String  'disable web click sound
    keyValue = "%SystemRoot%\Media\"
    If Environment.OSVersion.Version.Major = 5 AndAlso Environment.OSVersion.Version.Minor > 0 Then
        keyValue += "Windows XP Start.wav"
    ElseIf Environment.OSVersion.Version.Major = 6 Then
        keyValue += "Windows Navigation Start.wav"
    Else
        Return
    End If
    Dim key As RegistryKey = Registry.CurrentUser.OpenSubKey("AppEvents\Schemes\Apps\Explorer\Navigating\.Current", True)
    key.SetValue(Nothing, "", RegistryValueKind.ExpandString)

    Me.WebBrowser1.Navigate("https://www.youtube.com/some_video")
    waveOutSetVolume(IntPtr.Zero, 0)


End Sub

结束类

于 2017-04-15T22:50:39.297 回答
0

看看winmm.dll中的waveOutSetVolume和函数waveOutGetVolume

Private Declare Function waveOutSetVolume Lib "winmm.dll" (ByVal uDeviceID As Integer, ByVal dwVolume As Integer) As Integer
Private Declare Function waveOutGetVolume Lib "winmm.dll" (ByVal uDeviceID As Integer, ByRef lpdwVolume As Integer) As Integer

waveOutSetVolume 函数

waveOutGetVolume 函数

根据目标机器的操作系统版本,您可能需要考虑使用更新的APIMMDeviceEndpointVolumeAPI。

EndpointVolume 示例代码

于 2013-09-11T15:58:35.627 回答
0
[DllImport("winmm.dll")]
private static extern int waveOutSetVolume(IntPtr hwo, uint dwVolume);

//mute application
private void mute(){
{
    int NewVolume = 0; //set 0 to unmute
    uint NewVolumeAllChannels = (((uint)NewVolume & 0x0000ffff) | ((uint)NewVolume << 16));
    waveOutSetVolume(IntPtr.Zero, NewVolumeAllChannels);
}

//unmute application
private void unmute(){
{
    int NewVolume = 65535; //set 65535 to unmute
    uint NewVolumeAllChannels = (((uint)NewVolume & 0x0000ffff) | ((uint)NewVolume << 16));
    waveOutSetVolume(IntPtr.Zero, NewVolumeAllChannels);
}
于 2019-10-13T13:18:13.637 回答