3 types derived from TriggerAction
PresentationFramework (3)
System\Windows\Controls\SoundPlayerAction.cs (1)
39public class SoundPlayerAction : TriggerAction, IDisposable
System\Windows\Media\Animation\BeginStoryboard.cs (1)
27public sealed class BeginStoryboard : TriggerAction
System\Windows\Media\Animation\ControllableStoryboardAction.cs (1)
27public abstract class ControllableStoryboardAction : TriggerAction
30 references to TriggerAction
PresentationFramework (30)
System\Windows\EventTrigger.cs (2)
58TriggerAction action = value as TriggerAction;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
785case 689: t = () => typeof(TriggerAction); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10628typeof(System.Windows.TriggerAction),
System\Windows\Markup\KnownTypes.cs (1)
6243case KnownElements.TriggerAction: t = typeof(System.Windows.TriggerAction); break;
System\Windows\StyleHelper.cs (9)
1080List<TriggerAction> actionsList = null; 1083TriggerAction action = null; 1112actionsList = triggerActions[eventTrigger.RoutedEvent] as List<TriggerAction>; 1119actionsList = new List<TriggerAction>(); 2513List<TriggerAction> actionsList; 2518? ownerStyle._triggerActions[Event] as List<TriggerAction> 2525? frameworkTemplate._triggerActions[Event] as List<TriggerAction> 2533TriggerAction action = actionsList[i]; 4830TriggerAction action = actions[i];
System\Windows\TriggerActionCollection.cs (16)
23public sealed class TriggerActionCollection : IList, IList<TriggerAction> 33_rawList = new List<TriggerAction>(); 41_rawList = new List<TriggerAction>(initialSize); 91TriggerAction oldValue = _rawList[index]; 104public void Add(TriggerAction value) 115public bool Contains(TriggerAction value) 123public void CopyTo( TriggerAction[] array, int index ) 131public int IndexOf(TriggerAction value) 139public void Insert(int index, TriggerAction value) 150public bool Remove(TriggerAction value) 161public TriggerAction this[int index] 181public IEnumerator<TriggerAction> GetEnumerator() 300private TriggerAction VerifyIsTriggerAction(object value) 302TriggerAction action = value as TriggerAction; 317private List<TriggerAction> _rawList;