2 writes to tryHideTimer
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (2)
207this.tryHideTimer = new DispatcherTimer(); 298this.tryHideTimer = null;
8 references to tryHideTimer
System.Activities.Presentation (8)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (8)
205if (this.tryHideTimer == null) 208this.tryHideTimer.Interval = TimeSpan.FromMilliseconds(200); 209this.tryHideTimer.Tick += this.TryHideAnnotation; 212return this.tryHideTimer; 289if (this.tryHideTimer != null) 291this.tryHideTimer.Tick -= this.TryHideAnnotation; 292if (this.tryHideTimer.IsEnabled) 294this.tryHideTimer.Stop();