Condividi tramite


SystemSounds.Beep Proprietà

Definizione

Ottiene il suono associato all'evento del programma Beep nella combinazione di suoni Windows corrente.

public:
 static property System::Media::SystemSound ^ Beep { System::Media::SystemSound ^ get(); };
public static System.Media.SystemSound Beep { get; }
static member Beep : System.Media.SystemSound
Public Shared ReadOnly Property Beep As SystemSound

Valore della proprietà

Oggetto SystemSound associato all'evento del programma Beep nella combinazione di suoni Windows corrente.

Esempio

Nell'esempio di codice seguente viene illustrato l'uso della Beep proprietà .

// Plays the sound associated with the Beep system event.
SystemSounds::Beep->Play();
// Plays the sound associated with the Beep system event.
SystemSounds.Beep.Play();
' Plays the sound associated with the Beep system event.
SystemSounds.Beep.Play()

Commenti

In Windows Server 2022 l'attività Microsoft\Windows\Multimedia\SystemSoundsService in Utilità di pianificazione è disabilitata. Sia questa attività che il servizio Windows Audio devono essere abilitati per SystemSounds.Beep.Play() funzionare correttamente.

Si applica a

Vedi anche