次の方法で共有


SystemSounds.Beep プロパティ

定義

現在の Windows サウンド スキームで Beep プログラム イベントに関連付けられているサウンドを取得します。

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

プロパティ値

現在の Windows サウンド スキームで Beep プログラム イベントに関連付けられている SystemSound

次のコード例では、 プロパティの使用方法を Beep 示します。

// 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()

注釈

Windows Server 2022 では、タスク スケジューラの Microsoft\Windows\Multimedia\SystemSoundsService タスクが無効になっています。 このタスクと Windows Audio サービスの両方が正しく機能するには、 を SystemSounds.Beep.Play() 有効にする必要があります。

適用対象

こちらもご覧ください