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.

27 lines
1.0 KiB
C#

using StartServerWPF.Modules.MseedChart.ViewModels;
using StartServerWPF.Modules.MseedChart.Views;
using Prism.Ioc;
using Prism.Modularity;
using Prism.Regions;
using StartServerWPF.Modules.MseedChart.Core;
namespace StartServerWPF.Modules.MseedChart
{
public class MseedChartModule : IModule
{
public void OnInitialized(IContainerProvider containerProvider)
{
var regionManager = containerProvider.Resolve<IRegionManager>();
// regionManager.RegisterViewWithRegion(RegionNames.ContentRegion, typeof(ChartPlotView));
}
public void RegisterTypes(IContainerRegistry containerRegistry)
{
containerRegistry.RegisterForNavigation<ChartPlotView>();
containerRegistry.RegisterForNavigation<ChartPlotRealDataView>();
containerRegistry.RegisterSingleton<ChartPlotViewModel>();
containerRegistry.RegisterSingleton<ChartPlotRealDataViewModel>();
containerRegistry.RegisterDialog<ChartStationDialog>();
}
}
}