Implemented AvalonDock, added BlockGroupBrowser

This commit is contained in:
Ben
2015-06-10 22:42:31 +01:00
parent 92eb8cec01
commit f4eaba016f
23 changed files with 499 additions and 162 deletions

View File

@@ -30,11 +30,21 @@ namespace Filtration.WindsorInstallers
.ImplementedBy<ReplaceColorsViewModel>()
.LifeStyle.Singleton);
container.Register(
Component.For<IStartPageViewModel>()
.ImplementedBy<StartPageViewModel>()
.LifeStyle.Singleton);
container.Register(
Component.For<ISectionBrowserViewModel>()
.ImplementedBy<SectionBrowserViewModel>()
.LifeStyle.Singleton);
container.Register(
Component.For<IBlockGroupBrowserViewModel>()
.ImplementedBy<BlockGroupBrowserViewModel>()
.LifeStyle.Singleton);
container.AddFacility<TypedFactoryFacility>();
container.Register(
Component.For<IItemFilterBlockViewModelFactory>().AsFactory());