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