DisplayAreaWatcher.Added 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 un DisplayArea
oggetto viene aggiunto alla raccolta di aree di visualizzazione restituite da DisplayArea.FindAll
.
// Register
event_token Added(TypedEventHandler<DisplayAreaWatcher, DisplayArea const&> const& handler) const;
// Revoke with event_token
void Added(event_token const* cookie) const;
// Revoke with event_revoker
DisplayAreaWatcher::Added_revoker Added(auto_revoke_t, TypedEventHandler<DisplayAreaWatcher, DisplayArea const&> const& handler) const;
public event TypedEventHandler<DisplayAreaWatcher,DisplayArea> Added;
function onAdded(eventArgs) { /* Your code */ }
displayAreaWatcher.addEventListener("added", onAdded);
displayAreaWatcher.removeEventListener("added", onAdded);
- or -
displayAreaWatcher.onadded = onAdded;
Public Custom Event Added As TypedEventHandler(Of DisplayAreaWatcher, DisplayArea)