Winforms app like google chrome with multiple processes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:00:19Z http://stackoverflow.com/feeds/question/197182 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes 13 Winforms app like google chrome with multiple processes oo 2008-10-13T10:15:58Z 2009-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#197189 5 Answer by Alexander Kojevnikov for Winforms app like google chrome with multiple processes Alexander Kojevnikov 2008-10-13T10:20:38Z 2008-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#197191 10 Answer by Jon Skeet for Winforms app like google chrome with multiple processes Jon Skeet 2008-10-13T10:21:59Z 2009-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#197193 1 Answer by Lars Truijens for Winforms app like google chrome with multiple processes Lars Truijens 2008-10-13T10:22:08Z 2008-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#197264 0 Answer by Erick Sgarbi for Winforms app like google chrome with multiple processes Erick Sgarbi 2008-10-13T11:07:10Z 2008-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#202177 3 Answer by Judah Himango for Winforms app like google chrome with multiple processes Judah Himango 2008-10-14T18:01:20Z 2009-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#492033 1 Answer by Mo Flanagan for Winforms app like google chrome with multiple processes Mo Flanagan 2009-01-29T15:23:36Z 2009-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>