FlyoutBase.Closing イベント

定義

ポップアップが非表示になり始めると発生します。

// Register
event_token Closing(TypedEventHandler<FlyoutBase, FlyoutBaseClosingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
FlyoutBase::Closing_revoker Closing(auto_revoke_t, TypedEventHandler<FlyoutBase, FlyoutBaseClosingEventArgs const&> const& handler) const;
public event TypedEventHandler<FlyoutBase,FlyoutBaseClosingEventArgs> Closing;
function onClosing(eventArgs) { /* Your code */ }
flyoutBase.addEventListener("closing", onClosing);
flyoutBase.removeEventListener("closing", onClosing);
- or -
flyoutBase.onclosing = onClosing;
Public Custom Event Closing As TypedEventHandler(Of FlyoutBase, FlyoutBaseClosingEventArgs) 
<flyout Closing="eventhandler"/>

イベントの種類

Windows の要件

デバイス ファミリ
Windows 10 Anniversary Edition (10.0.14393.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v3.0 で導入)

注釈

Windows 10 バージョン 1607 以降で使用できます。

適用対象