Share via


ApplicationView.VisibleBoundsChanged イベント

定義

このイベントは、 VisibleBounds の値が変更されると発生します。通常は、ステータス バー、アプリ バー、またはその他のクロムが表示または非表示になった結果として発生します。

// 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) 

イベントの種類

適用対象