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부터 사용할 수 있습니다.

적용 대상