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