Files
TfomanApps/WPFUI/Bootstrapper.cs
Tommy TFO. Öman 7254941c18 Add project files.
2020-07-05 21:58:39 +02:00

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