CoreWindowDialog.Showing 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
對話方塊顯示時引發。
// Register
event_token Showing(TypedEventHandler<CoreWindow, CoreWindowPopupShowingEventArgs const&> const& handler) const;
// Revoke with event_token
void Showing(event_token const* cookie) const;
// Revoke with event_revoker
CoreWindowDialog::Showing_revoker Showing(auto_revoke_t, TypedEventHandler<CoreWindow, CoreWindowPopupShowingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,CoreWindowPopupShowingEventArgs> Showing;
function onShowing(eventArgs) { /* Your code */ }
coreWindowDialog.addEventListener("showing", onShowing);
coreWindowDialog.removeEventListener("showing", onShowing);
- or -
coreWindowDialog.onshowing = onShowing;
Public Custom Event Showing As TypedEventHandler(Of CoreWindow, CoreWindowPopupShowingEventArgs)