MediaElement.RateChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando il valore PlaybackRate o DefaultPlaybackRate cambia.
public:
virtual event RateChangedRoutedEventHandler ^ RateChanged;
// Register
event_token RateChanged(RateChangedRoutedEventHandler const& handler) const;
// Revoke with event_token
void RateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaElement::RateChanged_revoker RateChanged(auto_revoke_t, RateChangedRoutedEventHandler const& handler) const;
public event RateChangedRoutedEventHandler RateChanged;
function onRateChanged(eventArgs) { /* Your code */ }
mediaElement.addEventListener("ratechanged", onRateChanged);
mediaElement.removeEventListener("ratechanged", onRateChanged);
- or -
mediaElement.onratechanged = onRateChanged;
Public Custom Event RateChanged As RateChangedRoutedEventHandler
<MediaElement RateChanged="eventhandler"/>