Winforms app like google chrome with multiple processes - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T04:00:19Zhttp://stackoverflow.com/feeds/question/197182http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes13Winforms app like google chrome with multiple processesoo2008-10-13T10:15:58Z2009-09-09T14:35:35Z
<p>Is there anyway to use C# to build a container app where each tab is actually its own process like with Google chrome.</p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/197189#1971895Answer by Alexander Kojevnikov for Winforms app like google chrome with multiple processesAlexander Kojevnikov2008-10-13T10:20:38Z2008-10-13T10:20:38Z<p>Check <a href="http://blog.chromium.org/2008/10/responsiveness-for-plugins-and-renderer.html" rel="nofollow">this post</a> on the Chromium Blog. Only one process is responsible for the actual rendering to the screen.</p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/197191#19719110Answer by Jon Skeet for Winforms app like google chrome with multiple processesJon Skeet2008-10-13T10:21:59Z2009-09-09T14:35:35Z<p>You can use the <a href="http://pinvoke.net/default.aspx/user32/SetParent.html" rel="nofollow">SetParent</a> Win32 call to do this, but it's really fraught with problems. I had enough troubles getting it all to work nicely using windows from different AppDomains - there'd be even more difficulties with whole extra processes.</p>
<p>Basically there's potentially a lot of communication required between the two processes - things like resizing can become quite painful, as well as what happens if the child app wants to quit etc. It's all doable, but I'd think very carefully before doing it. For a browser it makes a lot of sense (disclaimer: I work for Google) but for most other apps it's really not worth the effort.</p>
<p>(Are the "tabs" you want to create actual .NET apps? If so, as I say this becomes significantly easier - and I can give you a big hint which is that each UI should run its own UI thread from within its own AppDomain. You get really weird effects if you don't do this!)</p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/197193#1971931Answer by Lars Truijens for Winforms app like google chrome with multiple processesLars Truijens2008-10-13T10:22:08Z2008-10-13T10:22:08Z<p>Yes. You can spawn new processes using <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx" rel="nofollow">System.Diagnostics.Process</a>. Using some form of Inter Process Communication, .Net Remoting for example, you can communicate between processes. And then you can set the parent of the window/form of your new process to a window (tab) of your first process so it appears there.</p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/197264#1972640Answer by Erick Sgarbi for Winforms app like google chrome with multiple processesErick Sgarbi2008-10-13T11:07:10Z2008-10-13T11:07:10Z<p>Without looking too deep into the extensibility stack, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.addin.hosting.addinprocess.aspx" rel="nofollow">System.Addin</a> namespace to build an application that inherently can create addins as visual individual tabs and set each tab/addin as an out process and this is a behavior out of the box.</p>
<p>It will have the same functionality as the chrome tabs.</p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/202177#2021773Answer by Judah Himango for Winforms app like google chrome with multiple processesJudah Himango2008-10-14T18:01:20Z2009-08-28T01:05:19Z<p>The System.AddIn APIs introduced in .NET 3.5 lets you use UI controls in separate <strong>AppDomains</strong>. With some hoop jumping, you can make it work in separate processes, too.</p>
<p>This is supported navtively in WPF. See the MSDN sample <a href="http://msdn.microsoft.com/en-us/library/bb913903.aspx" rel="nofollow">Add-In Returns a UI</a>.</p>
<p>Using Windows Forms, it doesn't look like it's natively possible using the System.AddIn APIs. See <a href="http://blogs.msdn.com/jackg/archive/2007/03/02/winforms-and-system-addin.aspx" rel="nofollow">this post</a> from a System.AddIn architect Jack Gudenkauf. </p>
<p>However, there is a workaround for WinForms. You can make this work with a little hack: See the BCL team's blog <a href="http://blogs.msdn.com/clraddins/archive/2008/01/03/support-for-windows-forms-in-hosts-and-add-ins.aspx" rel="nofollow">Support for Windows Forms in System.AddIn Hosts and Add-ins</a></p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/492033#4920331Answer by Mo Flanagan for Winforms app like google chrome with multiple processesMo Flanagan2009-01-29T15:23:36Z2009-03-27T02:28:30Z<p>My product, <a href="http://windowtabs.com" rel="nofollow">WindowTabs.com</a>, kind of does this. You need to use Win32 - I suggest you avoid using SetParent because you end up attaching the thread input. Instead, draw the tabs above the windows and use SetWindowPos to move the windows as a group. Also, some third party controls like Infragistic don't function correctly if you parent the form at a Win32 level. </p>