using Caliburn.Micro; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using TrackerWPFUI.ViewModels; namespace TrackerWPFUI { public class BootStrapper:BootstrapperBase { public BootStrapper() { Initialize(); } protected override void OnStartup(object sender, StartupEventArgs e) { DisplayRootViewFor(); } } }