Windows Forms application like Google Chrome with multiple processes

后端 未结 7 2205
刺人心
刺人心 2020-11-30 21:55

Is there any way to use C# to build a container application where each tab is actually its own process like with Google chrome?

相关标签:
7条回答
  • 2020-11-30 22:23

    My product, WindowTabs.com, 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.

    0 讨论(0)
提交回复
热议问题