3 types derived from TriggerAction
PresentationFramework (3)
System\Windows\Controls\SoundPlayerAction.cs (1)
26public class SoundPlayerAction : TriggerAction, IDisposable
System\Windows\Media\Animation\BeginStoryboard.cs (1)
24public sealed class BeginStoryboard : TriggerAction
System\Windows\Media\Animation\ControllableStoryboardAction.cs (1)
24public abstract class ControllableStoryboardAction : TriggerAction
30 references to TriggerAction
PresentationFramework (30)
System\Windows\EventTrigger.cs (2)
55TriggerAction action = value as TriggerAction;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
783case 689: t = () => typeof(TriggerAction); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10626typeof(System.Windows.TriggerAction),
System\Windows\Markup\KnownTypes.cs (1)
6243case KnownElements.TriggerAction: t = typeof(System.Windows.TriggerAction); break;
System\Windows\StyleHelper.cs (9)
1074List<TriggerAction> actionsList = null; 1077TriggerAction action = null; 1106actionsList = triggerActions[eventTrigger.RoutedEvent] as List<TriggerAction>; 1113actionsList = new List<TriggerAction>(); 2507List<TriggerAction> actionsList; 2512? ownerStyle._triggerActions[Event] as List<TriggerAction> 2519? frameworkTemplate._triggerActions[Event] as List<TriggerAction> 2527TriggerAction action = actionsList[i]; 4824TriggerAction action = actions[i];
System\Windows\TriggerActionCollection.cs (16)
21public sealed class TriggerActionCollection : IList, IList<TriggerAction> 31_rawList = new List<TriggerAction>(); 39_rawList = new List<TriggerAction>(initialSize); 89TriggerAction oldValue = _rawList[index]; 102public void Add(TriggerAction value) 113public bool Contains(TriggerAction value) 121public void CopyTo( TriggerAction[] array, int index ) 129public int IndexOf(TriggerAction value) 137public void Insert(int index, TriggerAction value) 148public bool Remove(TriggerAction value) 159public TriggerAction this[int index] 179public IEnumerator<TriggerAction> GetEnumerator() 298private TriggerAction VerifyIsTriggerAction(object value) 300TriggerAction action = value as TriggerAction; 315private List<TriggerAction> _rawList;