다음을 통해 공유


AppBar.Closing 이벤트

정의

AppBar가 표시에서 숨김으로 변경하기 시작할 때 발생합니다.

// Register
event_token Closing(EventHandler<IInspectable> const& handler) const;

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

// Revoke with event_revoker
AppBar::Closing_revoker Closing(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> Closing;
function onClosing(eventArgs) { /* Your code */ }
appBar.addEventListener("closing", onClosing);
appBar.removeEventListener("closing", onClosing);
- or -
appBar.onclosing = onClosing;
Public Custom Event Closing As EventHandler(Of Object) 
<AppBar Closing="eventhandler"/>

이벤트 유형

설명

Closing 이벤트는 전환 애니메이션이 시작되기 전에 발생합니다.

적용 대상