Nytt wpf-projekt tillagt , caliburn micro implemented, klart för start av UI-kodning
This commit is contained in:
24
ImageHandlingUI/Bootstrapper.cs
Normal file
24
ImageHandlingUI/Bootstrapper.cs
Normal file
@ -0,0 +1,24 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user