MiracastReceiverGameControllerDevice.Changed 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.
Evento generato quando una delle proprietà di MiracastReceiverGameControllerDevice è stata modificata.
// Register
event_token Changed(TypedEventHandler<MiracastReceiverGameControllerDevice, IInspectable const&> const& handler) const;
// Revoke with event_token
void Changed(event_token const* cookie) const;
// Revoke with event_revoker
MiracastReceiverGameControllerDevice::Changed_revoker Changed(auto_revoke_t, TypedEventHandler<MiracastReceiverGameControllerDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<MiracastReceiverGameControllerDevice,object> Changed;
function onChanged(eventArgs) { /* Your code */ }
miracastReceiverGameControllerDevice.addEventListener("changed", onChanged);
miracastReceiverGameControllerDevice.removeEventListener("changed", onChanged);
- or -
miracastReceiverGameControllerDevice.onchanged = onChanged;
Public Custom Event Changed As TypedEventHandler(Of MiracastReceiverGameControllerDevice, Object)
Tipo evento
TypedEventHandler<MiracastReceiverGameControllerDevice,Object>
TypedEventHandler<MiracastReceiverGameControllerDevice,IInspectable>