FlyoutBase.Closing イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ポップアップが非表示になり始めると発生します。
// 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 以降で使用できます。