StyletTestingGround/DynamicMenu/Bootstrapper.cs

20 lines
468 B
C#
Raw Normal View History

2020-07-16 08:13:22 -07:00
using Company.WpfApplication1.Pages;
using Stylet;
using StyletIoC;
namespace Company.WpfApplication1
{
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
}
}
}