4 instantiations of AttachedCollection
Microsoft.Maui.Controls (4)
Style.cs (2)
79 public IList<Behavior> Behaviors => _behaviors ??= new AttachedCollection<Behavior>(); 91 public IList<TriggerBase> Triggers => _triggers ??= new AttachedCollection<TriggerBase>();
VisualElement\VisualElement.cs (2)
391 var collection = new AttachedCollection<Behavior>(); 402 var collection = new AttachedCollection<TriggerBase>();
6 references to AttachedCollection
Microsoft.Maui.Controls (6)
Style.cs (4)
178 ((AttachedCollection<Behavior>)Behaviors).AttachTo(bindable); 179 ((AttachedCollection<TriggerBase>)Triggers).AttachTo(bindable); 184 ((AttachedCollection<TriggerBase>)Triggers).DetachFrom(bindable); 185 ((AttachedCollection<Behavior>)Behaviors).DetachFrom(bindable);
VisualElement\VisualElement.cs (2)
391 var collection = new AttachedCollection<Behavior>(); 402 var collection = new AttachedCollection<TriggerBase>();