SoundPlayer.SoundLocationChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu'un nouveau chemin source audio pour ce SoundPlayer a été défini.
public:
event EventHandler ^ SoundLocationChanged;
public event EventHandler SoundLocationChanged;
public event EventHandler? SoundLocationChanged;
member this.SoundLocationChanged : EventHandler
Public Custom Event SoundLocationChanged As EventHandler
Type d'événement
Exemples
L’exemple de code suivant illustre l’utilisation du OnSoundLocationChanged gestionnaire d’événements pour recevoir une notification lorsque le SoundPlayer a été attaché à un autre fichier .wav. Cet exemple de code fait partie d’un exemple plus grand fourni pour la SoundPlayer classe .
// Handler for the SoundLocationChanged event.
void player_LocationChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
{
String^ message = String::Format( "SoundLocationChanged: {0}", player->SoundLocation );
ReportStatus( message );
}
// Handler for the SoundLocationChanged event.
private void player_LocationChanged(object sender, EventArgs e)
{
string message = String.Format("SoundLocationChanged: {0}",
player.SoundLocation);
ReportStatus(message);
}
' Handler for the SoundLocationChanged event.
Private Sub player_LocationChanged(ByVal sender As Object, _
ByVal e As EventArgs)
Dim message As String = [String].Format("SoundLocationChanged: {0}", _
player.SoundLocation)
ReportStatus(message)
End Sub
Remarques
Cet événement est déclenché lorsqu’un nouveau chemin d’accès à la source audio a été défini pour cela SoundPlayer .
Pour plus d’informations sur la façon de gérer les événements, consultez gestion et déclenchement d’événements.