Add project files.
This commit is contained in:
24
WPFUI/Bootstrapper.cs
Normal file
24
WPFUI/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 WPFUI.ViewModels;
|
||||
|
||||
namespace WPFUI
|
||||
{
|
||||
public class Bootstrapper : BootstrapperBase
|
||||
{
|
||||
public Bootstrapper()
|
||||
{
|
||||
Initialize();
|
||||
}
|
||||
|
||||
protected override void OnStartup(object sender, StartupEventArgs e)
|
||||
{
|
||||
DisplayRootViewFor<ShellViewModel>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user