3 types derived from TriggerAction
PresentationFramework (3)
src\Framework\System\Windows\Controls\SoundPlayerAction.cs (1)
39public class SoundPlayerAction : TriggerAction, IDisposable
src\Framework\System\Windows\Media\Animation\BeginStoryboard.cs (1)
25public sealed class BeginStoryboard : TriggerAction
src\Framework\System\Windows\Media\Animation\ControllableStoryboardAction.cs (1)
25public abstract class ControllableStoryboardAction : TriggerAction
30 references to TriggerAction
PresentationFramework (30)
src\Framework\System\Windows\EventTrigger.cs (2)
57TriggerAction action = value as TriggerAction;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
781case 689: t = () => typeof(TriggerAction); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10624typeof(System.Windows.TriggerAction),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6233case KnownElements.TriggerAction: t = typeof(System.Windows.TriggerAction); break;
src\Framework\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];
src\Framework\System\Windows\TriggerActionCollection.cs (16)
22public sealed class TriggerActionCollection : IList, IList<TriggerAction> 32_rawList = new List<TriggerAction>(); 40_rawList = new List<TriggerAction>(initialSize); 90TriggerAction oldValue = _rawList[index]; 103public void Add(TriggerAction value) 114public bool Contains(TriggerAction value) 122public void CopyTo( TriggerAction[] array, int index ) 130public int IndexOf(TriggerAction value) 138public void Insert(int index, TriggerAction value) 149public bool Remove(TriggerAction value) 160public TriggerAction this[int index] 180public IEnumerator<TriggerAction> GetEnumerator() 299private TriggerAction VerifyIsTriggerAction(object value) 301TriggerAction action = value as TriggerAction; 321private List<TriggerAction> _rawList;