ApplicationView.VisibleBoundsChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當 VisibleBounds 的值變更時,就會引發此事件,通常是顯示或隱藏狀態列、應用程式行或其他 Chrome 的結果。
// Register
event_token VisibleBoundsChanged(TypedEventHandler<ApplicationView, IInspectable const&> const& handler) const;
// Revoke with event_token
void VisibleBoundsChanged(event_token const* cookie) const;
// Revoke with event_revoker
ApplicationView::VisibleBoundsChanged_revoker VisibleBoundsChanged(auto_revoke_t, TypedEventHandler<ApplicationView, IInspectable const&> const& handler) const;
public event TypedEventHandler<ApplicationView,object> VisibleBoundsChanged;
function onVisibleBoundsChanged(eventArgs) { /* Your code */ }
applicationView.addEventListener("visibleboundschanged", onVisibleBoundsChanged);
applicationView.removeEventListener("visibleboundschanged", onVisibleBoundsChanged);
- or -
applicationView.onvisibleboundschanged = onVisibleBoundsChanged;
Public Custom Event VisibleBoundsChanged As TypedEventHandler(Of ApplicationView, Object)
事件類型
TypedEventHandler<ApplicationView,IInspectable>