MediaElement.VolumeChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
// Register
event_token VolumeChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void VolumeChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaElement::VolumeChanged_revoker VolumeChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler VolumeChanged;
function onVolumeChanged(eventArgs) { /* Your code */ }
mediaElement.addEventListener("volumechanged", onVolumeChanged);
mediaElement.removeEventListener("volumechanged", onVolumeChanged);
- or -
mediaElement.onvolumechanged = onVolumeChanged;
Public Custom Event VolumeChanged As RoutedEventHandler
<MediaElement VolumeChanged="eventhandler" />