SoundPlayer::SoundLocationChanged Event

 

Occurs when a new audio source path for this SoundPlayer has been set.

Namespace:   System.Media
Assembly:  System (in System.dll)

public:
event EventHandler^ SoundLocationChanged {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

This event is raised when a new audio source path for this SoundPlayer has been set.

For more information about handling events, see NIB: Consuming Events.

The following code example demonstrates the use of the OnSoundLocationChanged event handler to receive a notification when the SoundPlayer has been attached to a different .wav file. This code example is part of a larger example provided for the SoundPlayer class.

// Handler for the SoundLocationChanged event.
void player_LocationChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
{
   String^ message = String::Format( "SoundLocationChanged: {0}", player->SoundLocation );
   ReportStatus( message );
}


.NET Framework
Available since 2.0
Return to top
Show: