How to use Prism within an ElementHost
问题 I'm new to Prism and I am attempting to host a Prisim control within an ElementHost. I seem to be missing something very basic. I have a single WinForm that contains an ElementHost. The following code is in the form: public partial class Form1 : Form { public Form1() { InitializeComponent(); Bootstrapper bootstrapper = new Bootstrapper(); bootstrapper.Run(); var child = bootstrapper.Container.Resolve<Shell>(); elementHost.Child = child; } The BootStrapper handles regisration public class