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)
11800typeof(System.Windows.TriggerAction),
System\Windows\Markup\KnownTypes.cs (1)
6237case KnownElements.TriggerAction: t = typeof(System.Windows.TriggerAction); break;
System\Windows\StyleHelper.cs (9)
1072List<TriggerAction> actionsList = null; 1075TriggerAction action = null; 1104actionsList = triggerActions[eventTrigger.RoutedEvent] as List<TriggerAction>; 1111actionsList = new List<TriggerAction>(); 2502List<TriggerAction> actionsList; 2507? ownerStyle._triggerActions[Event] as List<TriggerAction> 2514? frameworkTemplate._triggerActions[Event] as List<TriggerAction> 2522TriggerAction action = actionsList[i]; 4820TriggerAction 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;