Caliburn.Micro + Autofac bootstrapping
问题 I have a project with Caliburn.Micro, and I'm trying to port from its SimpleContainer to Autofac. I'm using this code, that is an updated version of the code in this guide. Using SimpleContainer I simply did (inside the bootstrapper) protected override void OnStartup(object sender, System.Windows.StartupEventArgs e) { this.DisplayRootViewFor<IScreen>(); // where ShellViewModel : Screen } Now this doesn't work anymore, so what should I do to integrate Autofac with Caliburn.Micro ? 回答1: There