StyletTestingGround/DynamicMenu/Bootstrapper.cs

20 lines
444 B
C#
Raw Normal View History

2020-07-17 07:01:43 -07:00
using DynamicMenu.Pages;
2020-07-16 08:13:22 -07:00
using Stylet;
using StyletIoC;
2020-07-17 07:01:43 -07:00
namespace DynamicMenu
2020-07-16 08:13:22 -07:00
{
public class Bootstrapper : Bootstrapper<ShellViewModel>
{
protected override void ConfigureIoC(IStyletIoCBuilder builder)
{
// Configure the IoC container in here
}
protected override void Configure()
{
// Perform any other configuration before the application starts
}
}
}