using System.Windows; using Autofac; using Prism.Autofac; namespace Example { public class Bootstrapper : AutofacBootstrapper { protected override DependencyObject CreateShell() => Container.Resolve(); protected override void InitializeShell() { Application.Current.MainWindow?.Show(); } } }