SystemSounds.Question Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera dźwięk skojarzony ze zdarzeniem Question programu w bieżącym schemacie dźwięku systemu Windows.
public:
static property System::Media::SystemSound ^ Question { System::Media::SystemSound ^ get(); };
public static System.Media.SystemSound Question { get; }
static member Question : System.Media.SystemSound
Public Shared ReadOnly Property Question As SystemSound
Wartość właściwości
Skojarzony SystemSound ze zdarzeniem Question programu w bieżącym schemacie dźwięku systemu Windows.
Przykłady
Poniższy przykład kodu przedstawia użycie Question właściwości.
// Plays the sound associated with the Question system event.
SystemSounds::Question->Play();
// Plays the sound associated with the Question system event.
SystemSounds.Question.Play();
' Plays the sound associated with the Question system event.
SystemSounds.Question.Play()