I have developed a Prism based WPF application using DryIoc container now I want to host it inside the windows forms application, But I couldn't find out how to host this application inside windows forms using element host.
DryIoc bootstrapper class is defined inside "Prism.DryIoc.Wpf" so I added the reference in my winforms application, but the problem with this approach is that when I tried to override the "CreateShell" method it returns DependencyObject which I can't use in winforms context,
protected virtual System.Windows.DependencyObject CreateShell();
Any pointers on how to get it working ? Thanks in advance.