Caliburn Micro installed in a new MVVM wpf UI for the tournamnt tracker
This commit is contained in:
24
TrackerWPFUI/BootStrapper.cs
Normal file
24
TrackerWPFUI/BootStrapper.cs
Normal file
@ -0,0 +1,24 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user