5 types derived from Timeline
PresentationCore (5)
System\Windows\Media\Animation\AnimationTimeline.cs (1)
10public abstract class AnimationTimeline : Timeline
System\Windows\Media\Animation\Generated\TimelineGroup.cs (1)
20abstract partial class TimelineGroup : Timeline
System\Windows\Media\Animation\TimelineGroup.cs (1)
15public abstract partial class TimelineGroup : Timeline, IAddChild
System\Windows\Media\Generated\MediaTimeline.cs (1)
30partial class MediaTimeline : Timeline
System\Windows\Media\MediaTimeline.cs (1)
22public partial class MediaTimeline : Timeline, IUriContext
150 references to Timeline
PresentationCore (114)
System\Windows\Media\Animation\Clock.cs (24)
41protected internal Clock(Timeline timeline) 58_timeline = (Timeline)timeline.GetCurrentValueAsFrozen(); 222/// <see cref="System.Windows.Media.Animation.Timeline.FillBehavior"/> attribute. 350public Timeline Timeline 377AddEventHandler(Timeline.CompletedKey, value); 381RemoveEventHandler(Timeline.CompletedKey, value); 395AddEventHandler(Timeline.CurrentGlobalSpeedInvalidatedKey, value); 400RemoveEventHandler(Timeline.CurrentGlobalSpeedInvalidatedKey, value); 414AddEventHandler(Timeline.CurrentStateInvalidatedKey, value); 419RemoveEventHandler(Timeline.CurrentStateInvalidatedKey, value); 432AddEventHandler(Timeline.CurrentTimeInvalidatedKey, value); 437RemoveEventHandler(Timeline.CurrentTimeInvalidatedKey, value); 448AddEventHandler(Timeline.RemoveRequestedKey, value); 452RemoveEventHandler(Timeline.RemoveRequestedKey, value); 567Timeline timeline, 595Timeline timeline, 644Timeline rootTimeline, 3452FireEvent(Timeline.CompletedKey); 3460FireEvent(Timeline.CurrentGlobalSpeedInvalidatedKey); 3469FireEvent(Timeline.CurrentStateInvalidatedKey); 3478FireEvent(Timeline.CurrentTimeInvalidatedKey); 3504FireEvent(Timeline.RemoveRequestedKey); 3584Int32? desiredFrameRate = Timeline.GetDesiredFrameRate(_timeline); 4470internal Timeline _timeline;
System\Windows\Media\Animation\ClockGroup.cs (1)
85Timeline timeline,
System\Windows\Media\Animation\Generated\Timeline.cs (4)
34public new Timeline Clone() 36return (Timeline)base.Clone(); 43public new Timeline CloneCurrentValue() 45return (Timeline)base.CloneCurrentValue();
System\Windows\Media\Animation\Generated\TimelineCollection.cs (53)
22public sealed partial class TimelineCollection : Animatable, IList, IList<Timeline> 67public void Add(Timeline value) 95public bool Contains(Timeline value) 105public int IndexOf(Timeline value) 115public void Insert(int index, Timeline value) 137public bool Remove(Timeline value) 153Timeline oldValue = _collection[index]; 197Timeline oldValue = _collection[ index ]; 215public Timeline this[int index] 235Timeline oldValue = _collection[ index ]; 269public void CopyTo(Timeline[] array, int index) 284bool ICollection<Timeline>.IsReadOnly 308IEnumerator<Timeline> IEnumerable<Timeline>.GetEnumerator() 321return ((ICollection<Timeline>)this).IsReadOnly; 356return Contains(value as Timeline); 361return IndexOf(value as Timeline); 372Remove(value as Timeline); 464internal Timeline Internal_GetItem(int i) 491private Timeline Cast(object value) 495if (!(value is Timeline)) 500return (Timeline) value; 506private int AddHelper(Timeline value) 517internal int AddWithoutFiringPublicEvents(Timeline value) 526Timeline newValue = value; 579_collection = new FrugalStructList<Timeline>(count); 583Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].Clone(); 601_collection = new FrugalStructList<Timeline>(count); 605Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].CloneCurrentValue(); 623_collection = new FrugalStructList<Timeline>(count); 627Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetAsFrozen(); 645_collection = new FrugalStructList<Timeline>(count); 649Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetCurrentValueAsFrozen(); 729internal FrugalStructList<Timeline> _collection; 739public struct Enumerator : IEnumerator, IEnumerator<Timeline> 750_current = default(Timeline); 830public Timeline Current 853private Timeline _current; 875_collection = new FrugalStructList<Timeline>(); 884_collection = new FrugalStructList<Timeline>(capacity); 890public TimelineCollection(IEnumerable<Timeline> collection) 901ICollection<Timeline> icollectionOfT = collection as ICollection<Timeline>; 905_collection = new FrugalStructList<Timeline>(icollectionOfT); 913_collection = new FrugalStructList<Timeline>(icollection); 917_collection = new FrugalStructList<Timeline>(); 919foreach (Timeline item in collection) 925Timeline newValue = item; 937foreach (Timeline item in collection)
System\Windows\Media\Animation\RepeatBehavior.cs (2)
134/// Creates and returns a <see cref="RepeatBehavior"/> that indicates that a <see cref="Timeline"/> 137/// <value>A <see cref="RepeatBehavior"/> that indicates that a <see cref="Timeline"/>
System\Windows\Media\Animation\Timeline.cs (27)
130Timeline sourceTimeline = (Timeline)sourceFreezable; 149Timeline sourceTimeline = (Timeline)sourceFreezable; 162((Timeline)d).PropertyChanged(e.Property); 175typeof(Timeline), 231typeof(Timeline), 274typeof(Timeline), 313typeof(Timeline), 356typeof(Timeline), 374/// <seealso cref="Timeline.DesiredFrameRateProperty" /> 375public static Int32? GetDesiredFrameRate(Timeline timeline) 387/// <seealso cref="Timeline.DesiredFrameRateProperty" /> 388public static void SetDesiredFrameRate(Timeline timeline, Int32? desiredFrameRate) 405typeof(Timeline), 446typeof(Timeline), 486typeof(Timeline), 529typeof(Timeline), 564typeof(Timeline), 838internal void InternalOnFreezablePropertyChanged(Timeline originalTimeline, Timeline newTimeline) 897private void CopyCommon(Timeline sourceTimeline) 1003Timeline timeline = (Timeline)weakRef.Target; 1127internal static Timeline Find(int id) 1129Timeline timeline = null; 1137timeline = (Timeline)weakRef.Target;
System\Windows\Media\Animation\TimelineGroup.cs (2)
142Timeline timelineChild = child as Timeline;
System\Windows\Media\Animation\TimeManager.cs (1)
345Timeline.CleanKnownTimelinesTable();
PresentationFramework (36)
System\windows\Documents\CaretElement.cs (1)
915Timeline.SetDesiredFrameRate(blinkAnimation, 10);
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
759case 665: t = () => typeof(Timeline); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
7161Type type = typeof(System.Windows.Media.Animation.Timeline); 7162DependencyProperty dp = System.Windows.Media.Animation.Timeline.BeginTimeProperty; 7164this.GetXamlType(typeof(System.Windows.Media.Animation.Timeline)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11416typeof(System.Windows.Media.Animation.Timeline),
System\Windows\Markup\KnownTypes.cs (1)
6213case KnownElements.Timeline: t = typeof(System.Windows.Media.Animation.Timeline); break;
System\Windows\Media\Animation\Storyboard.cs (1)
382Timeline currentTimeline = currentClock.Timeline;
System\Windows\VisualStateManager.cs (28)
376Dictionary<TimelineDataToken, Timeline> currentAnimations = FlattenTimelines(group.CurrentStoryboards); 377Dictionary<TimelineDataToken, Timeline> transitionAnimations = FlattenTimelines(transition?.Storyboard); 378Dictionary<TimelineDataToken, Timeline> newStateAnimations = FlattenTimelines(newState.Storyboard); 382foreach (KeyValuePair<TimelineDataToken, Timeline> pair in transitionAnimations) 389foreach (KeyValuePair<TimelineDataToken, Timeline> pair in newStateAnimations) 393Timeline toAnimation = GenerateToAnimation(root, pair.Value, easingFunction, true); 408foreach (KeyValuePair<TimelineDataToken, Timeline> pair in currentAnimations) 410Timeline fromAnimation = GenerateFromAnimation(root, pair.Value, easingFunction); 421private static Timeline GenerateFromAnimation(FrameworkElement root, Timeline timeline, IEasingFunction easingFunction) 423Timeline result = null; 448private static Timeline GenerateToAnimation(FrameworkElement root, Timeline timeline, IEasingFunction easingFunction, bool isEntering) 450Timeline result = null; 487private static void CopyStoryboardTargetProperties(FrameworkElement root, Timeline source, Timeline destination) 590private static Color? GetTargetColor(Timeline timeline, bool isEntering) 613private static double? GetTargetDouble(Timeline timeline, bool isEntering) 636private static Point? GetTargetPoint(Timeline timeline, bool isEntering) 666private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Storyboard storyboard) 668Dictionary<TimelineDataToken, Timeline> result = new Dictionary<TimelineDataToken, Timeline>(); 675private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Collection<Storyboard> storyboards) 677Dictionary<TimelineDataToken, Timeline> result = new Dictionary<TimelineDataToken, Timeline>(); 687private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken, Timeline> result) 696Timeline child = storyboard.Children[index]; 712public TimelineDataToken(Timeline timeline)