Files
PictureHandlingProject/ImageHandlingUI/Bootstrapper.cs

25 lines
513 B
C#

using Caliburn.Micro;
using ImageHandlingUI.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace ImageHandlingUI
{
public class Bootstrapper : BootstrapperBase
{
public Bootstrapper()
{
Initialize();
}
protected override void OnStartup(object sender, StartupEventArgs e)
{
DisplayRootViewFor<ShellViewModel>();
}
}
}