LinedFlowLayout.ItemsUnlocked イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
LockItemToLine メソッドの呼び出しによって特定の行にロックされていた項目が再度ロック解除されるたびに発生します。
// Register
event_token ItemsUnlocked(TypedEventHandler<LinedFlowLayout, IInspectable const&> const& handler) const;
// Revoke with event_token
void ItemsUnlocked(event_token const* cookie) const;
// Revoke with event_revoker
LinedFlowLayout::ItemsUnlocked_revoker ItemsUnlocked(auto_revoke_t, TypedEventHandler<LinedFlowLayout, IInspectable const&> const& handler) const;
public event TypedEventHandler<LinedFlowLayout,object> ItemsUnlocked;
function onItemsUnlocked(eventArgs) { /* Your code */ }
linedFlowLayout.addEventListener("itemsunlocked", onItemsUnlocked);
linedFlowLayout.removeEventListener("itemsunlocked", onItemsUnlocked);
- or -
linedFlowLayout.onitemsunlocked = onItemsUnlocked;
Public Custom Event ItemsUnlocked As TypedEventHandler(Of LinedFlowLayout, Object)
イベントの種類
TypedEventHandler<LinedFlowLayout,IInspectable>
注釈
ロックされたアイテムが再びロック解除され、次の場合にこのイベントがトリガーされます。
- LinedFlowLayout で使用できる幅が変更されました。
- ItemsSource データが変更されました。 たとえば、項目が追加、削除、またはサイズ変更された場合などです。
- ActualLineHeight プロパティが変更されました。