3 types derived from TriggerAction
PresentationFramework (3)
System\Windows\Controls\SoundPlayerAction.cs (1)
25public class SoundPlayerAction : TriggerAction, IDisposable
System\Windows\Media\Animation\BeginStoryboard.cs (1)
23public sealed class BeginStoryboard : TriggerAction
System\Windows\Media\Animation\ControllableStoryboardAction.cs (1)
23public abstract class ControllableStoryboardAction : TriggerAction
30 references to TriggerAction
PresentationFramework (30)
System\Windows\EventTrigger.cs (2)
54TriggerAction action = value as TriggerAction;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
782case 689: t = () => typeof(TriggerAction); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11799typeof(System.Windows.TriggerAction),
System\Windows\Markup\KnownTypes.cs (1)
6236case KnownElements.TriggerAction: t = typeof(System.Windows.TriggerAction); break;
System\Windows\StyleHelper.cs (9)
1071List<TriggerAction> actionsList = null; 1074TriggerAction action = null; 1103actionsList = triggerActions[eventTrigger.RoutedEvent] as List<TriggerAction>; 1110actionsList = new List<TriggerAction>(); 2501List<TriggerAction> actionsList; 2506? ownerStyle._triggerActions[Event] as List<TriggerAction> 2513? frameworkTemplate._triggerActions[Event] as List<TriggerAction> 2521TriggerAction action = actionsList[i]; 4819TriggerAction action = actions[i];
System\Windows\TriggerActionCollection.cs (16)
20public sealed class TriggerActionCollection : IList, IList<TriggerAction> 30_rawList = new List<TriggerAction>(); 38_rawList = new List<TriggerAction>(initialSize); 88TriggerAction oldValue = _rawList[index]; 101public void Add(TriggerAction value) 112public bool Contains(TriggerAction value) 120public void CopyTo( TriggerAction[] array, int index ) 128public int IndexOf(TriggerAction value) 136public void Insert(int index, TriggerAction value) 147public bool Remove(TriggerAction value) 158public TriggerAction this[int index] 178public IEnumerator<TriggerAction> GetEnumerator() 297private TriggerAction VerifyIsTriggerAction(object value) 299TriggerAction action = value as TriggerAction; 314private List<TriggerAction> _rawList;