3 implementations of IAttachedObject
Microsoft.Maui.Controls (3)
Interactivity\AttachedCollection.cs (1)
8
internal class AttachedCollection<T> : ObservableCollection<T>, ICollection<T>,
IAttachedObject
where T : BindableObject, IAttachedObject
Interactivity\Behavior.cs (1)
10
public abstract class Behavior : BindableObject,
IAttachedObject
Interactivity\TriggerBase.cs (1)
9
public abstract class TriggerBase : BindableObject,
IAttachedObject
5 references to IAttachedObject
Microsoft.Maui.Controls (5)
Interactivity\AttachedCollection.cs (1)
8
internal class AttachedCollection<T> : ObservableCollection<T>, ICollection<T>, IAttachedObject where T : BindableObject,
IAttachedObject
Interactivity\Behavior.cs (2)
26
void
IAttachedObject
.AttachTo(BindableObject bindable)
35
void
IAttachedObject
.DetachFrom(BindableObject bindable) => OnDetachingFrom(bindable);
Interactivity\TriggerBase.cs (2)
57
void
IAttachedObject
.AttachTo(BindableObject bindable)
68
void
IAttachedObject
.DetachFrom(BindableObject bindable)