2 writes to _timeManager
PresentationCore (2)
System\Windows\Media\Animation\Clock.cs (1)
3783subtree.Current._timeManager = timeManager;
System\Windows\Media\Animation\ClockGroup.cs (1)
414_timeManager = timeManager;
33 references to _timeManager
PresentationCore (33)
System\Windows\Media\Animation\Clock.cs (28)
523if (_timeManager == null) 529return _timeManager.InternalCurrentGlobalTime; 545return _timeManager.InternalCurrentGlobalTime; 880if (_timeManager == null || HasDescendantsWithUnresolvedDuration) 902_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 1076_timeManager.AddToEventQueue(this); 1096_timeManager.AddToEventQueue(this); 1117_timeManager.AddToEventQueue(this); 1134_timeManager.AddToEventQueue(this); 1153_timeManager.AddToEventQueue(this); 1836_beginTime += _timeManager.LastTickDelta; 1841_currentIterationBeginTime += _timeManager.LastTickDelta; 1902_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 3076if (_timeManager == null || _timeManager.InternalIsStopped) 3088parentIntervalCollection = _timeManager.InternalCurrentIntervals; 3104parentTime = _timeManager.InternalCurrentGlobalTime; 3562Debug.Assert(_timeManager == null); 3575SetTimeManager(_parent._timeManager); 3589_subtreeFinalizer = new SubtreeFinalizer(_timeManager); 3604_timeManager.SetDirty(); 3607TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 3609_timeManager.InternalCurrentIntervals = currentIntervals; 3692_timeManager.NotifyNewEarliestFutureActivity(); 3702_timeManager?.SetDirty(); 3776if (this._timeManager != timeManager) 3854return (_timeManager != null) && (_timeManager.State != TimeState.Stopped);
System\Windows\Media\Animation\ClockGroup.cs (5)
279_timeManager.NotifyNewEarliestFutureActivity(); 408Debug.Assert(this._timeManager == null, "Cannot use a timeline already in the timing tree as a root"); 458Debug.Assert(_timeManager != null); // RootActivate should be called by our own TimeManager 461TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 463_timeManager.InternalCurrentIntervals = currentIntervals;