25 lines
493 B
C#
25 lines
493 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 WPFUI.ViewModels;
|
|
|
|
namespace WPFUI
|
|
{
|
|
public class Bootstrapper : BootstrapperBase
|
|
{
|
|
public Bootstrapper()
|
|
{
|
|
Initialize();
|
|
}
|
|
|
|
protected override void OnStartup(object sender, StartupEventArgs e)
|
|
{
|
|
DisplayRootViewFor<ShellViewModel>();
|
|
}
|
|
}
|
|
}
|