WebUICommandBarConfirmationButton.ItemInvoked 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
더 이상 사용되지 않습니다. 확인 단추가 호출될 때 발생합니다.
// 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)
이벤트 유형
설명
명령 모음("App Bar"라고도 함) UX 요소의 사용은 JavaScript를 사용하는 UWP 앱에서 더 이상 사용되지 않으며 더 이상 지원되지 않습니다. 앱에 여전히 필요한 경우 이 기능은 WinJS 4 라이브러리에서 사용할 수 있습니다.