Partager via


LinedFlowLayout.ItemsUnlocked Événement

Définition

Se produit chaque fois que des éléments qui avaient été verrouillés dans des lignes spécifiques via des appels à la méthode LockItemToLine sont à nouveau déverrouillés.

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

Type d'événement

Remarques

Les éléments verrouillés redeviennent déverrouillés et déclenchent cet événement lorsque :

S’applique à