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 속성이 변경되었습니다.