show/hide this revision's text 3 deleted 596 characters in body

I suggest two things:

1) Run each component as a separate process

My product, not AppDomain. AppDomains are useful but there is quite a bit WindowTabs.com, kind of code you does this. You need to write to get them "correct" and use Win32 - I suggest you have to manage the threads yourself. If avoid using SetParent because you go end up attaching the process routethread input. Instead, you get to use CreateProcess draw the tabs above the windows and just pass it an exe path.

2) Manage use SetWindowPos to move the windows at a win32 level, not at as a "Form" levelgroup. At a Win32 level, all windows are just HWNDSAlso, it doesn't matter some third party controls like Infragistic don't function correctly if its WinForms, WPF, Java, MFC. I would say that any code you write should just work with parent the raw HWND's.

Also, you can take a look form at WindowTabs.com (full disclosure, I wrote WindowTabs). It lets you basically create docked tabs across processes much like Google Chrome. John Skeet mentioned SetParent, WindowTabs doesn't use this because it can cause a bunch of problems (some of which John pointed out). This might not meet your specialized needs but hopefully it can offer some food for thoughtWin32 level.

show/hide this revision's text 2 added 598 characters in body

Take

I suggest two things:

1) Run each component as a separate process, not AppDomain. AppDomains are useful but there is quite a bit of code you need to write to get them "correct" and you have to manage the threads yourself. If you go the process route, you get to use CreateProcess and just pass it an exe path.

2) Manage windows at a win32 level, not at a "Form" level. At a Win32 level, all windows are just HWNDS, it doesn't matter if its WinForms, WPF, Java, MFC. I would say that any code you write should just work with the raw HWND's.

Also, you can take a look at WindowTabs.com (full disclosure, I wrote WindowTabs). It lets you basically create docked tabs across processes much like Google Chrome. John Skeet mentioned SetParent, WindowTabs doesn't use this because it can cause a bunch of problems (some of which John pointed out).

If you want to do it yourself, you need to drop down to a Win32 level, and I would suggest running each application as a separate process on its own thread. At a Win32 level, This might not meet your specialized needs but hopefully it doesn't matter if its .NET WIndow Forms, WPF, MFC, Java, its all just HWND'scan offer some food for thought.

show/hide this revision's text 1

Take a look at WindowTabs.com (full disclosure, I wrote WindowTabs). It lets you basically create docked tabs across processes much like Google Chrome. John Skeet mentioned SetParent, WindowTabs doesn't use this because it can cause a bunch of problems (some of which John pointed out).

If you want to do it yourself, you need to drop down to a Win32 level, and I would suggest running each application as a separate process on its own thread. At a Win32 level, it doesn't matter if its .NET WIndow Forms, WPF, MFC, Java, its all just HWND's.