Freigeben über


WebUICommandBarConfirmationButton.ItemInvoked Ereignis

Definition

Veraltet. Tritt auf, wenn die Bestätigungsschaltfläche aufgerufen wird.

// Register
event_token ItemInvoked(TypedEventHandler<WebUICommandBarConfirmationButton, WebUICommandBarItemInvokedEventArgs const&> const& handler) const;

// Revoke with event_token
void ItemInvoked(event_token const* cookie) const;

// Revoke with event_revoker
WebUICommandBarConfirmationButton::ItemInvoked_revoker ItemInvoked(auto_revoke_t, TypedEventHandler<WebUICommandBarConfirmationButton, WebUICommandBarItemInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebUICommandBarConfirmationButton,WebUICommandBarItemInvokedEventArgs> ItemInvoked;
function onItemInvoked(eventArgs) { /* Your code */ }
webUICommandBarConfirmationButton.addEventListener("iteminvoked", onItemInvoked);
webUICommandBarConfirmationButton.removeEventListener("iteminvoked", onItemInvoked);
- or -
webUICommandBarConfirmationButton.oniteminvoked = onItemInvoked;
Public Custom Event ItemInvoked As TypedEventHandler(Of WebUICommandBarConfirmationButton, WebUICommandBarItemInvokedEventArgs) 

Ereignistyp

Hinweise

Die Verwendung des Befehlsleisten-UX-Elements (auch als "App Bar" bezeichnet) ist für UWP-Apps mit JavaScript veraltet und wird nicht mehr unterstützt. Wenn Ihre App sie weiterhin benötigt, ist diese Funktionalität über die WinJS 4-Bibliothek verfügbar.

Gilt für: