using System.Windows;
using Prism.Ioc;
namespace Example
{
///
/// Interaction logic for App.xaml
///
public partial class App
{
protected override void RegisterTypes(IContainerRegistry containerRegistry)
{
//nothing
}
protected override Window CreateShell()
{
return this.Container.Resolve();
}
}
}