InkToolbar.InkDrawingAttributesChanged 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 vengono modificate le proprietà InkDrawingAttributes .
// Register
event_token InkDrawingAttributesChanged(TypedEventHandler<InkToolbar, IInspectable const&> const& handler) const;
// Revoke with event_token
void InkDrawingAttributesChanged(event_token const* cookie) const;
// Revoke with event_revoker
InkToolbar::InkDrawingAttributesChanged_revoker InkDrawingAttributesChanged(auto_revoke_t, TypedEventHandler<InkToolbar, IInspectable const&> const& handler) const;
public event TypedEventHandler<InkToolbar,object> InkDrawingAttributesChanged;
function onInkDrawingAttributesChanged(eventArgs) { /* Your code */ }
inkToolbar.addEventListener("inkdrawingattributeschanged", onInkDrawingAttributesChanged);
inkToolbar.removeEventListener("inkdrawingattributeschanged", onInkDrawingAttributesChanged);
- or -
inkToolbar.oninkdrawingattributeschanged = onInkDrawingAttributesChanged;
Public Custom Event InkDrawingAttributesChanged As TypedEventHandler(Of InkToolbar, Object)
Tipo evento
TypedEventHandler<InkToolbar,IInspectable>
Si applica a
Vedi anche
- Interazioni tramite penna e stilo
- Aggiungere un controllo InkToolbar a un'app piattaforma UWP (Universal Windows Platform) (UWP)
- Esercitazione introduttiva: Supportare l'input penna nell'app UWP
- InkDrawingAttributes
- Esempio di input penna semplice (C#/C++)
- Esempio di input penna complesso (C++)
- Esempio di input penna (JavaScript)
- Esercitazione introduttiva: Supportare l'input penna nell'app UWP
- Esempio di app Coloring Book