You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
706 B
C#
25 lines
706 B
C#
using mseedChart.Core;
|
|
using mseedChart.Main.ViewModels;
|
|
using mseedChart.Main.Views;
|
|
using Prism.Ioc;
|
|
using Prism.Modularity;
|
|
using Prism.Regions;
|
|
|
|
namespace mseedChart.Main
|
|
{
|
|
public class MainModule : IModule
|
|
{
|
|
public void OnInitialized(IContainerProvider containerProvider)
|
|
{
|
|
var regionManager = containerProvider.Resolve<IRegionManager>();
|
|
regionManager.RegisterViewWithRegion(RegionNames.ContentRegion, typeof(ViewA));
|
|
}
|
|
|
|
public void RegisterTypes(IContainerRegistry containerRegistry)
|
|
{
|
|
containerRegistry.Register<ViewA>();
|
|
containerRegistry.RegisterSingleton<ChartPlotViewModel>();
|
|
|
|
}
|
|
}
|
|
} |