public BootScreen() { this.InitializeComponent(); App.AttachDevTools(this); Dispatcher.UIThread.InvokeAsync(() => { Startup(); }); }
public BootScreen() { this.InitializeComponent(); App.AttachDevTools(this); this.time.Interval = 500; this.time.AutoReset = false; this.time.Elapsed += TimeOnElapsed; this.time.Start(); }