次の方法で共有


CoreApplicationViewTitleBar.LayoutMetricsChanged イベント

定義

タイトル バーがサイズの変更に対応する必要がある場合に発生します。 このイベントの最も一般的なトリガーは、アプリ ウィンドウが別の DPI を持つ画面に移動する場合です。 このイベントを使用して、タイトル バーのサイズに依存する UI 要素の位置を確認および更新します。

// Register
event_token LayoutMetricsChanged(TypedEventHandler<CoreApplicationViewTitleBar, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
CoreApplicationViewTitleBar::LayoutMetricsChanged_revoker LayoutMetricsChanged(auto_revoke_t, TypedEventHandler<CoreApplicationViewTitleBar, IInspectable const&> const& handler) const;
public event TypedEventHandler<CoreApplicationViewTitleBar,object> LayoutMetricsChanged;
function onLayoutMetricsChanged(eventArgs) { /* Your code */ }
coreApplicationViewTitleBar.addEventListener("layoutmetricschanged", onLayoutMetricsChanged);
coreApplicationViewTitleBar.removeEventListener("layoutmetricschanged", onLayoutMetricsChanged);
- or -
coreApplicationViewTitleBar.onlayoutmetricschanged = onLayoutMetricsChanged;
Public Custom Event LayoutMetricsChanged As TypedEventHandler(Of CoreApplicationViewTitleBar, Object) 

イベントの種類

適用対象