1 type derived from TriggerAction
Microsoft.Maui.Controls (1)
Interactivity\TriggerAction.cs (1)
26 public abstract class TriggerAction<T> : TriggerAction where T : BindableObject
12 references to TriggerAction
Microsoft.Maui.Controls (12)
Interactivity\EventTrigger.cs (4)
26 Actions = new SealedList<TriggerAction>(); 30 public IList<TriggerAction> Actions { get; } 73 ((SealedList<TriggerAction>)Actions).IsReadOnly = true; 100 foreach (TriggerAction action in Actions)
Interactivity\TriggerBase.cs (8)
17 EnterActions = new SealedList<TriggerAction>(); 18 ExitActions = new SealedList<TriggerAction>(); 29 public IList<TriggerAction> EnterActions { get; } 32 public IList<TriggerAction> ExitActions { get; } 99 ((SealedList<TriggerAction>)EnterActions).IsReadOnly = true; 100 ((SealedList<TriggerAction>)ExitActions).IsReadOnly = true; 117 foreach (TriggerAction action in EnterActions) 126 foreach (TriggerAction action in ExitActions)