LinedFlowLayout.ItemsUnlocked 事件

定义

每当通过调用 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) 

事件类型

注解

锁定的项目再次解锁,并在以下情况下触发此事件:

适用于