MediaPlayer.IsMutedChanged 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 lo stato disattivato corrente di MediaPlayer cambia.
// Register
event_token IsMutedChanged(TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
// Revoke with event_token
void IsMutedChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaPlayer::IsMutedChanged_revoker IsMutedChanged(auto_revoke_t, TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaPlayer,object> IsMutedChanged;
function onIsMutedChanged(eventArgs) { /* Your code */ }
mediaPlayer.addEventListener("ismutedchanged", onIsMutedChanged);
mediaPlayer.removeEventListener("ismutedchanged", onIsMutedChanged);
- or -
mediaPlayer.onismutedchanged = onIsMutedChanged;
Public Custom Event IsMutedChanged As TypedEventHandler(Of MediaPlayer, Object)
Tipo evento
TypedEventHandler<MediaPlayer,IInspectable>
Requisiti Windows
Famiglia di dispositivi |
Windows 10 Anniversary Edition (è stato introdotto in 10.0.14393.0)
|
API contract |
Windows.Foundation.UniversalApiContract (è stato introdotto in v3.0)
|