2 writes to IsInteractivelyPaused
PresentationCore (2)
System\Windows\Media\Animation\Clock.cs (2)
2767
subtree.Current.
IsInteractivelyPaused
= true;
2790
subtree.Current.
IsInteractivelyPaused
= false;
13 references to IsInteractivelyPaused
PresentationCore (13)
System\Windows\Media\Animation\Clock.cs (13)
302
return
IsInteractivelyPaused
;
783
Debug.Assert(!(
IsInteractivelyPaused
&& PendingInteractivePause));
784
Debug.Assert(!(!
IsInteractivelyPaused
&& PendingInteractiveResume));
790
else if (!
IsInteractivelyPaused
)
828
Debug.Assert( !(
IsInteractivelyPaused
&& PendingInteractivePause));
829
Debug.Assert( !(!
IsInteractivelyPaused
&& PendingInteractiveResume));
835
else if (
IsInteractivelyPaused
)
1830
else if ((
IsInteractivelyPaused
|| _rootData.InteractiveSpeedRatio == 0) &&
2312
if (
IsInteractivelyPaused
)
2574
&& !(
IsInteractivelyPaused
^ PauseStateChangedDuringTick))
2756
Debug.Assert(!
IsInteractivelyPaused
); // Enforce invariant: cannot be pausePending when already paused
2774
Debug.Assert(
IsInteractivelyPaused
);
3008
InternalNextTickNeededTime =
IsInteractivelyPaused
? TimeSpan.Zero : (TimeSpan?)null;