2 writes to _timeManager
PresentationCore (2)
System\Windows\Media\Animation\Clock.cs (1)
3789subtree.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); 1839_beginTime += _timeManager.LastTickDelta; 1844_currentIterationBeginTime += _timeManager.LastTickDelta; 1905_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 3082if (_timeManager == null || _timeManager.InternalIsStopped) 3094parentIntervalCollection = _timeManager.InternalCurrentIntervals; 3110parentTime = _timeManager.InternalCurrentGlobalTime; 3568Debug.Assert(_timeManager == null); 3581SetTimeManager(_parent._timeManager); 3595_subtreeFinalizer = new SubtreeFinalizer(_timeManager); 3610_timeManager.SetDirty(); 3613TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 3615_timeManager.InternalCurrentIntervals = currentIntervals; 3698_timeManager.NotifyNewEarliestFutureActivity(); 3708_timeManager?.SetDirty(); 3782if (this._timeManager != timeManager) 3860return (_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;