2 writes to _dt
WindowsBase (2)
Base\System\Windows\SplashScreen.cs (2)
313
_dt
= new DispatcherTimer();
356
_dt
= null;
6 references to _dt
WindowsBase (6)
Base\System\Windows\SplashScreen.cs (6)
296
if (
_dt
!= null || _hwnd == null)
314
_dt
.Interval = TimeSpan.FromMilliseconds(30); // shoot for ~30 fps
317
_dt
.Tick += new EventHandler(Fadeout_Tick);
318
_dt
.Start();
353
if (
_dt
!= null)
355
_dt
.Stop();