2 writes to _timeManager
PresentationCore (2)
System\Windows\Media\Animation\Clock.cs (1)
3790subtree.Current._timeManager = timeManager;
System\Windows\Media\Animation\ClockGroup.cs (1)
415_timeManager = timeManager;
33 references to _timeManager
PresentationCore (33)
System\Windows\Media\Animation\Clock.cs (28)
524if (_timeManager == null) 530return _timeManager.InternalCurrentGlobalTime; 546return _timeManager.InternalCurrentGlobalTime; 881if (_timeManager == null || HasDescendantsWithUnresolvedDuration) 903_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 1077_timeManager.AddToEventQueue(this); 1097_timeManager.AddToEventQueue(this); 1118_timeManager.AddToEventQueue(this); 1135_timeManager.AddToEventQueue(this); 1154_timeManager.AddToEventQueue(this); 1840_beginTime += _timeManager.LastTickDelta; 1845_currentIterationBeginTime += _timeManager.LastTickDelta; 1906_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 3083if (_timeManager == null || _timeManager.InternalIsStopped) 3095parentIntervalCollection = _timeManager.InternalCurrentIntervals; 3111parentTime = _timeManager.InternalCurrentGlobalTime; 3569Debug.Assert(_timeManager == null); 3582SetTimeManager(_parent._timeManager); 3596_subtreeFinalizer = new SubtreeFinalizer(_timeManager); 3611_timeManager.SetDirty(); 3614TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 3616_timeManager.InternalCurrentIntervals = currentIntervals; 3699_timeManager.NotifyNewEarliestFutureActivity(); 3709_timeManager?.SetDirty(); 3783if (this._timeManager != timeManager) 3861return (_timeManager != null) && (_timeManager.State != TimeState.Stopped);
System\Windows\Media\Animation\ClockGroup.cs (5)
280_timeManager.NotifyNewEarliestFutureActivity(); 409Debug.Assert(this._timeManager == null, "Cannot use a timeline already in the timing tree as a root"); 459Debug.Assert(_timeManager != null); // RootActivate should be called by our own TimeManager 462TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 464_timeManager.InternalCurrentIntervals = currentIntervals;