5 types derived from Timeline
PresentationCore (5)
System\Windows\Media\Animation\AnimationTimeline.cs (1)
9public abstract class AnimationTimeline : Timeline
System\Windows\Media\Animation\Generated\TimelineGroup.cs (1)
17public abstract partial class TimelineGroup : Timeline
System\Windows\Media\Animation\TimelineGroup.cs (1)
14public abstract partial class TimelineGroup : Timeline, IAddChild
System\Windows\Media\Generated\MediaTimeline.cs (1)
27public partial class MediaTimeline : Timeline
System\Windows\Media\MediaTimeline.cs (1)
21public partial class MediaTimeline : Timeline, IUriContext
150 references to Timeline
PresentationCore (114)
System\Windows\Media\Animation\Clock.cs (24)
40protected internal Clock(Timeline timeline) 57_timeline = (Timeline)timeline.GetCurrentValueAsFrozen(); 221/// <see cref="System.Windows.Media.Animation.Timeline.FillBehavior"/> attribute. 349public Timeline Timeline 376AddEventHandler(Timeline.CompletedKey, value); 380RemoveEventHandler(Timeline.CompletedKey, value); 394AddEventHandler(Timeline.CurrentGlobalSpeedInvalidatedKey, value); 399RemoveEventHandler(Timeline.CurrentGlobalSpeedInvalidatedKey, value); 413AddEventHandler(Timeline.CurrentStateInvalidatedKey, value); 418RemoveEventHandler(Timeline.CurrentStateInvalidatedKey, value); 431AddEventHandler(Timeline.CurrentTimeInvalidatedKey, value); 436RemoveEventHandler(Timeline.CurrentTimeInvalidatedKey, value); 447AddEventHandler(Timeline.RemoveRequestedKey, value); 451RemoveEventHandler(Timeline.RemoveRequestedKey, value); 566Timeline timeline, 594Timeline timeline, 643Timeline rootTimeline, 3451FireEvent(Timeline.CompletedKey); 3459FireEvent(Timeline.CurrentGlobalSpeedInvalidatedKey); 3468FireEvent(Timeline.CurrentStateInvalidatedKey); 3477FireEvent(Timeline.CurrentTimeInvalidatedKey); 3503FireEvent(Timeline.RemoveRequestedKey); 3583Int32? desiredFrameRate = Timeline.GetDesiredFrameRate(_timeline); 4469internal Timeline _timeline;
System\Windows\Media\Animation\ClockGroup.cs (1)
84Timeline timeline,
System\Windows\Media\Animation\Generated\Timeline.cs (4)
31public new Timeline Clone() 33return (Timeline)base.Clone(); 40public new Timeline CloneCurrentValue() 42return (Timeline)base.CloneCurrentValue();
System\Windows\Media\Animation\Generated\TimelineCollection.cs (53)
21public sealed partial class TimelineCollection : Animatable, IList, IList<Timeline> 66public void Add(Timeline value) 94public bool Contains(Timeline value) 104public int IndexOf(Timeline value) 114public void Insert(int index, Timeline value) 136public bool Remove(Timeline value) 152Timeline oldValue = _collection[index]; 196Timeline oldValue = _collection[ index ]; 214public Timeline this[int index] 234Timeline oldValue = _collection[ index ]; 268public void CopyTo(Timeline[] array, int index) 283bool ICollection<Timeline>.IsReadOnly 307IEnumerator<Timeline> IEnumerable<Timeline>.GetEnumerator() 320return ((ICollection<Timeline>)this).IsReadOnly; 355return Contains(value as Timeline); 360return IndexOf(value as Timeline); 371Remove(value as Timeline); 463internal Timeline Internal_GetItem(int i) 490private Timeline Cast(object value) 494if (!(value is Timeline)) 499return (Timeline) value; 505private int AddHelper(Timeline value) 516internal int AddWithoutFiringPublicEvents(Timeline value) 525Timeline newValue = value; 578_collection = new FrugalStructList<Timeline>(count); 582Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].Clone(); 600_collection = new FrugalStructList<Timeline>(count); 604Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].CloneCurrentValue(); 622_collection = new FrugalStructList<Timeline>(count); 626Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetAsFrozen(); 644_collection = new FrugalStructList<Timeline>(count); 648Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetCurrentValueAsFrozen(); 728internal FrugalStructList<Timeline> _collection; 738public struct Enumerator : IEnumerator, IEnumerator<Timeline> 749_current = default(Timeline); 829public Timeline Current 852private Timeline _current; 874_collection = new FrugalStructList<Timeline>(); 883_collection = new FrugalStructList<Timeline>(capacity); 889public TimelineCollection(IEnumerable<Timeline> collection) 900ICollection<Timeline> icollectionOfT = collection as ICollection<Timeline>; 904_collection = new FrugalStructList<Timeline>(icollectionOfT); 912_collection = new FrugalStructList<Timeline>(icollection); 916_collection = new FrugalStructList<Timeline>(); 918foreach (Timeline item in collection) 924Timeline newValue = item; 936foreach (Timeline item in collection)
System\Windows\Media\Animation\RepeatBehavior.cs (2)
133/// Creates and returns a <see cref="RepeatBehavior"/> that indicates that a <see cref="Timeline"/> 136/// <value>A <see cref="RepeatBehavior"/> that indicates that a <see cref="Timeline"/>
System\Windows\Media\Animation\Timeline.cs (27)
129Timeline sourceTimeline = (Timeline)sourceFreezable; 148Timeline sourceTimeline = (Timeline)sourceFreezable; 161((Timeline)d).PropertyChanged(e.Property); 174typeof(Timeline), 230typeof(Timeline), 273typeof(Timeline), 312typeof(Timeline), 355typeof(Timeline), 373/// <seealso cref="Timeline.DesiredFrameRateProperty" /> 374public static Int32? GetDesiredFrameRate(Timeline timeline) 386/// <seealso cref="Timeline.DesiredFrameRateProperty" /> 387public static void SetDesiredFrameRate(Timeline timeline, Int32? desiredFrameRate) 404typeof(Timeline), 445typeof(Timeline), 485typeof(Timeline), 528typeof(Timeline), 563typeof(Timeline), 837internal void InternalOnFreezablePropertyChanged(Timeline originalTimeline, Timeline newTimeline) 896private void CopyCommon(Timeline sourceTimeline) 1002Timeline timeline = (Timeline)weakRef.Target; 1126internal static Timeline Find(int id) 1128Timeline timeline = null; 1136timeline = (Timeline)weakRef.Target;
System\Windows\Media\Animation\TimelineGroup.cs (2)
141Timeline timelineChild = child as Timeline;
System\Windows\Media\Animation\TimeManager.cs (1)
344Timeline.CleanKnownTimelinesTable();
PresentationFramework (36)
System\windows\Documents\CaretElement.cs (1)
914Timeline.SetDesiredFrameRate(blinkAnimation, 10);
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
758case 665: t = () => typeof(Timeline); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
7160Type type = typeof(System.Windows.Media.Animation.Timeline); 7161DependencyProperty dp = System.Windows.Media.Animation.Timeline.BeginTimeProperty; 7163this.GetXamlType(typeof(System.Windows.Media.Animation.Timeline)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11415typeof(System.Windows.Media.Animation.Timeline),
System\Windows\Markup\KnownTypes.cs (1)
6212case KnownElements.Timeline: t = typeof(System.Windows.Media.Animation.Timeline); break;
System\Windows\Media\Animation\Storyboard.cs (1)
381Timeline currentTimeline = currentClock.Timeline;
System\Windows\VisualStateManager.cs (28)
375Dictionary<TimelineDataToken, Timeline> currentAnimations = FlattenTimelines(group.CurrentStoryboards); 376Dictionary<TimelineDataToken, Timeline> transitionAnimations = FlattenTimelines(transition?.Storyboard); 377Dictionary<TimelineDataToken, Timeline> newStateAnimations = FlattenTimelines(newState.Storyboard); 381foreach (KeyValuePair<TimelineDataToken, Timeline> pair in transitionAnimations) 388foreach (KeyValuePair<TimelineDataToken, Timeline> pair in newStateAnimations) 392Timeline toAnimation = GenerateToAnimation(root, pair.Value, easingFunction, true); 407foreach (KeyValuePair<TimelineDataToken, Timeline> pair in currentAnimations) 409Timeline fromAnimation = GenerateFromAnimation(root, pair.Value, easingFunction); 420private static Timeline GenerateFromAnimation(FrameworkElement root, Timeline timeline, IEasingFunction easingFunction) 422Timeline result = null; 447private static Timeline GenerateToAnimation(FrameworkElement root, Timeline timeline, IEasingFunction easingFunction, bool isEntering) 449Timeline result = null; 486private static void CopyStoryboardTargetProperties(FrameworkElement root, Timeline source, Timeline destination) 589private static Color? GetTargetColor(Timeline timeline, bool isEntering) 612private static double? GetTargetDouble(Timeline timeline, bool isEntering) 635private static Point? GetTargetPoint(Timeline timeline, bool isEntering) 665private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Storyboard storyboard) 667Dictionary<TimelineDataToken, Timeline> result = new Dictionary<TimelineDataToken, Timeline>(); 674private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Collection<Storyboard> storyboards) 676Dictionary<TimelineDataToken, Timeline> result = new Dictionary<TimelineDataToken, Timeline>(); 686private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken, Timeline> result) 695Timeline child = storyboard.Children[index]; 711public TimelineDataToken(Timeline timeline)