Files
TournamentTracker/TrackerWPFUI/BootStrapper.cs

25 lines
505 B
C#

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<ShellViewModel>();
}
}
}