You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					24 lines
				
				916 B
			
		
		
			
		
	
	
					24 lines
				
				916 B
			| 
								 
											4 years ago
										 
									 | 
							
								using ECMonitor.Page.Name;
							 | 
						||
| 
								 | 
							
								using Prism.Ioc;
							 | 
						||
| 
								 | 
							
								using Prism.Modularity;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace ECMonitor
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									public class NavigationModule : IModule
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										public void OnInitialized(IContainerProvider containerProvider)
							 | 
						||
| 
								 | 
							
										{
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
										public void RegisterTypes(IContainerRegistry containerRegistry)
							 | 
						||
| 
								 | 
							
										{
							 | 
						||
| 
								 | 
							
											containerRegistry.RegisterForNavigation<Page.CameraMonitor.Main>(name: ViewsName.CameraMonitorMain);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
											containerRegistry.RegisterForNavigation<Page.SystemSet.Main>(name: ViewsName.SystemSetMain);
							 | 
						||
| 
								 | 
							
											containerRegistry.RegisterForNavigation<Page.SystemSet.ManageSet>(name: ViewsName.SystemSetManageSet);
							 | 
						||
| 
								 | 
							
											containerRegistry.RegisterForNavigation<Page.SystemSet.ManageNvr>(name: ViewsName.SystemSetManageNvr);
							 | 
						||
| 
								 | 
							
											containerRegistry.RegisterForNavigation<Page.SystemSet.ManageIpc>(name: ViewsName.SystemSetManageIpc);
							 | 
						||
| 
								 | 
							
											containerRegistry.RegisterForNavigation<Page.SystemSet.SearchIpc>(name: ViewsName.SystemSetSearchIpc);
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								}
							 |