The System.AddIn APIs introduced in .NET 3.5 lets you use UI controls in separate AppDomains. It doesn't appear to be possible using separate processes -
It's true that System.AddIn supports loading add-ins With some hoop jumping, you can make it work in their own separate processes, but there appears to be issues using UI controls when using the "inside own process" technique; only loading into separate AppDomains seems to worktoo.
This is supported navtively in WPF. See the MSDN sample Add-In Returns a UI.
Using Windows Forms, it doesn't look like it's natively possible using the System.AddIn APIs. See this post from a System.AddIn architect Jack Gudenkauf.
However, there is a workaround for WinForms. You can make this work with a little hack: See the BCL team's blog Support for Windows Forms in System.AddIn Hosts and Add-ins
