5 types derived from Timeline
PresentationCore (5)
Core\CSharp\System\Windows\Media\Animation\AnimationTimeline.cs (1)
15
public abstract class AnimationTimeline :
Timeline
Core\CSharp\System\Windows\Media\Animation\Generated\TimelineGroup.cs (1)
50
abstract partial class TimelineGroup :
Timeline
Core\CSharp\System\Windows\Media\Animation\TimelineGroup.cs (1)
23
public abstract partial class TimelineGroup :
Timeline
, IAddChild
Core\CSharp\System\Windows\Media\Generated\MediaTimeline.cs (1)
51
partial class MediaTimeline :
Timeline
Core\CSharp\System\Windows\Media\MediaTimeline.cs (1)
38
public partial class MediaTimeline :
Timeline
, IUriContext
147 references to Timeline
PresentationCore (111)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (24)
56
protected internal Clock(
Timeline
timeline)
73
_timeline = (
Timeline
)timeline.GetCurrentValueAsFrozen();
237
/// <see cref="System.Windows.Media.Animation.
Timeline
.FillBehavior"/> attribute.
365
public
Timeline
Timeline
392
AddEventHandler(
Timeline
.CompletedKey, value);
396
RemoveEventHandler(
Timeline
.CompletedKey, value);
410
AddEventHandler(
Timeline
.CurrentGlobalSpeedInvalidatedKey, value);
415
RemoveEventHandler(
Timeline
.CurrentGlobalSpeedInvalidatedKey, value);
429
AddEventHandler(
Timeline
.CurrentStateInvalidatedKey, value);
434
RemoveEventHandler(
Timeline
.CurrentStateInvalidatedKey, value);
447
AddEventHandler(
Timeline
.CurrentTimeInvalidatedKey, value);
452
RemoveEventHandler(
Timeline
.CurrentTimeInvalidatedKey, value);
463
AddEventHandler(
Timeline
.RemoveRequestedKey, value);
467
RemoveEventHandler(
Timeline
.RemoveRequestedKey, value);
582
Timeline
timeline,
610
Timeline
timeline,
659
Timeline
rootTimeline,
3474
FireEvent(
Timeline
.CompletedKey);
3482
FireEvent(
Timeline
.CurrentGlobalSpeedInvalidatedKey);
3491
FireEvent(
Timeline
.CurrentStateInvalidatedKey);
3500
FireEvent(
Timeline
.CurrentTimeInvalidatedKey);
3526
FireEvent(
Timeline
.RemoveRequestedKey);
3606
Int32? desiredFrameRate =
Timeline
.GetDesiredFrameRate(_timeline);
4500
internal
Timeline
_timeline;
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (1)
92
Timeline
timeline,
Core\CSharp\System\Windows\Media\Animation\Generated\Timeline.cs (4)
64
public new
Timeline
Clone()
66
return (
Timeline
)base.Clone();
73
public new
Timeline
CloneCurrentValue()
75
return (
Timeline
)base.CloneCurrentValue();
Core\CSharp\System\Windows\Media\Animation\Generated\TimelineCollection.cs (53)
52
public sealed partial class TimelineCollection : Animatable, IList, IList<
Timeline
>
97
public void Add(
Timeline
value)
125
public bool Contains(
Timeline
value)
135
public int IndexOf(
Timeline
value)
145
public void Insert(int index,
Timeline
value)
167
public bool Remove(
Timeline
value)
183
Timeline
oldValue = _collection[index];
227
Timeline
oldValue = _collection[ index ];
245
public
Timeline
this[int index]
265
Timeline
oldValue = _collection[ index ];
299
public void CopyTo(
Timeline
[] array, int index)
319
bool ICollection<
Timeline
>.IsReadOnly
343
IEnumerator<
Timeline
> IEnumerable<
Timeline
>.GetEnumerator()
356
return ((ICollection<
Timeline
>)this).IsReadOnly;
391
return Contains(value as
Timeline
);
396
return IndexOf(value as
Timeline
);
407
Remove(value as
Timeline
);
504
internal
Timeline
Internal_GetItem(int i)
531
private
Timeline
Cast(object value)
538
if (!(value is
Timeline
))
543
return (
Timeline
) value;
549
private int AddHelper(
Timeline
value)
560
internal int AddWithoutFiringPublicEvents(
Timeline
value)
569
Timeline
newValue = value;
622
_collection = new FrugalStructList<
Timeline
>(count);
626
Timeline
newValue = (
Timeline
) sourceTimelineCollection._collection[i].Clone();
644
_collection = new FrugalStructList<
Timeline
>(count);
648
Timeline
newValue = (
Timeline
) sourceTimelineCollection._collection[i].CloneCurrentValue();
666
_collection = new FrugalStructList<
Timeline
>(count);
670
Timeline
newValue = (
Timeline
) sourceTimelineCollection._collection[i].GetAsFrozen();
688
_collection = new FrugalStructList<
Timeline
>(count);
692
Timeline
newValue = (
Timeline
) sourceTimelineCollection._collection[i].GetCurrentValueAsFrozen();
772
internal FrugalStructList<
Timeline
> _collection;
782
public struct Enumerator : IEnumerator, IEnumerator<
Timeline
>
793
_current = default(
Timeline
);
873
public
Timeline
Current
896
private
Timeline
_current;
918
_collection = new FrugalStructList<
Timeline
>();
927
_collection = new FrugalStructList<
Timeline
>(capacity);
933
public TimelineCollection(IEnumerable<
Timeline
> collection)
944
ICollection<
Timeline
> icollectionOfT = collection as ICollection<
Timeline
>;
948
_collection = new FrugalStructList<
Timeline
>(icollectionOfT);
956
_collection = new FrugalStructList<
Timeline
>(icollection);
960
_collection = new FrugalStructList<
Timeline
>();
962
foreach (
Timeline
item in collection)
968
Timeline
newValue = item;
980
foreach (
Timeline
item in collection)
Core\CSharp\System\Windows\Media\Animation\Subtree.cs (5)
294
internal TimelineTreeEnumerator(
Timeline
root, bool processRoot)
305
_timelineStack = new Stack<
Timeline
>(10);
404
internal
Timeline
Current
416
private
Timeline
_rootTimeline;
419
private Stack<
Timeline
> _timelineStack;
Core\CSharp\System\Windows\Media\Animation\Timeline.cs (22)
142
Timeline
sourceTimeline = (
Timeline
)sourceFreezable;
161
Timeline
sourceTimeline = (
Timeline
)sourceFreezable;
174
((
Timeline
)d).PropertyChanged(e.Property);
187
typeof(
Timeline
),
243
typeof(
Timeline
),
286
typeof(
Timeline
),
325
typeof(
Timeline
),
368
typeof(
Timeline
),
386
/// <seealso cref="
Timeline
.DesiredFrameRateProperty" />
387
public static Int32? GetDesiredFrameRate(
Timeline
timeline)
399
/// <seealso cref="
Timeline
.DesiredFrameRateProperty" />
400
public static void SetDesiredFrameRate(
Timeline
timeline, Int32? desiredFrameRate)
417
typeof(
Timeline
),
458
typeof(
Timeline
),
498
typeof(
Timeline
),
541
typeof(
Timeline
),
576
typeof(
Timeline
),
850
internal void InternalOnFreezablePropertyChanged(
Timeline
originalTimeline,
Timeline
newTimeline)
909
private void CopyCommon(
Timeline
sourceTimeline)
Core\CSharp\System\Windows\Media\Animation\TimelineGroup.cs (2)
153
Timeline
timelineChild = child as
Timeline
;
PresentationFramework (36)
src\Framework\System\windows\Documents\CaretElement.cs (1)
925
Timeline
.SetDesiredFrameRate(blinkAnimation, 10);
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
757
case 665: t = () => typeof(
Timeline
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
6623
Type type = typeof(System.Windows.Media.Animation.
Timeline
);
6624
DependencyProperty dp = System.Windows.Media.Animation.
Timeline
.BeginTimeProperty;
6626
this.GetXamlType(typeof(System.Windows.Media.Animation.
Timeline
)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10284
typeof(System.Windows.Media.Animation.
Timeline
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6209
case KnownElements.Timeline: t = typeof(System.Windows.Media.Animation.
Timeline
); break;
src\Framework\System\Windows\Media\Animation\Storyboard.cs (1)
382
Timeline
currentTimeline = currentClock.Timeline;
src\Framework\System\Windows\VisualStateManager.cs (28)
427
Dictionary<TimelineDataToken,
Timeline
> currentAnimations = FlattenTimelines(group.CurrentStoryboards);
428
Dictionary<TimelineDataToken,
Timeline
> transitionAnimations = FlattenTimelines(transition != null ? transition.Storyboard : null);
429
Dictionary<TimelineDataToken,
Timeline
> newStateAnimations = FlattenTimelines(newState.Storyboard);
433
foreach (KeyValuePair<TimelineDataToken,
Timeline
> pair in transitionAnimations)
440
foreach (KeyValuePair<TimelineDataToken,
Timeline
> pair in newStateAnimations)
444
Timeline
toAnimation = GenerateToAnimation(root, pair.Value, easingFunction, true);
459
foreach (KeyValuePair<TimelineDataToken,
Timeline
> pair in currentAnimations)
461
Timeline
fromAnimation = GenerateFromAnimation(root, pair.Value, easingFunction);
472
private static
Timeline
GenerateFromAnimation(FrameworkElement root,
Timeline
timeline, IEasingFunction easingFunction)
474
Timeline
result = null;
499
private static
Timeline
GenerateToAnimation(FrameworkElement root,
Timeline
timeline, IEasingFunction easingFunction, bool isEntering)
501
Timeline
result = null;
538
private static void CopyStoryboardTargetProperties(FrameworkElement root,
Timeline
source,
Timeline
destination)
652
private static Color? GetTargetColor(
Timeline
timeline, bool isEntering)
675
private static double? GetTargetDouble(
Timeline
timeline, bool isEntering)
698
private static Point? GetTargetPoint(
Timeline
timeline, bool isEntering)
728
private static Dictionary<TimelineDataToken,
Timeline
> FlattenTimelines(Storyboard storyboard)
730
Dictionary<TimelineDataToken,
Timeline
> result = new Dictionary<TimelineDataToken,
Timeline
>();
737
private static Dictionary<TimelineDataToken,
Timeline
> FlattenTimelines(Collection<Storyboard> storyboards)
739
Dictionary<TimelineDataToken,
Timeline
> result = new Dictionary<TimelineDataToken,
Timeline
>();
749
private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken,
Timeline
> result)
758
Timeline
child = storyboard.Children[index];
774
public TimelineDataToken(
Timeline
timeline)