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.

30 lines
858 B
C#

using Prism.Ioc;
using Prism.Modularity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Txgy.EWS.Client.SysModule.ViewModels;
using Txgy.EWS.Client.SysModule.Views;
namespace Txgy.EWS.Client.SysModule
{
public class SysModuleProfile : IModule
{
public void OnInitialized(IContainerProvider containerProvider)
{
//throw new NotImplementedException();
}
public void RegisterTypes(IContainerRegistry containerRegistry)
{
containerRegistry.RegisterForNavigation<FileUploadView>();
containerRegistry.RegisterForNavigation<MenuManagementView>();
containerRegistry.RegisterDialog<AddFileDialog>();
containerRegistry.RegisterDialog<AddMenuDialog>();
}
}
}