将新标签页变成新流程
我有一个名为 test.exe 的选项卡式应用程序,每次创建新选项卡时都需要创建一个新进程(类似于 IE8 所做的那样。)。 因此,如果我打开了 3 个选项卡,就会启动 3 个 test.exe 进程。 我看到很多例子,但没有看到标签页。
I Have i tabbed application called test.exe , and I need to create a new process every time I create a new tab ( something like IE8 do. ).
So if I have 3 tabs opened, I have 3 test.exe process started.
I see many example but nothing with tabpages..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 MAF(
托管加载项框架
)使用WPF,您可以在不同的AppDomain上创建控件。这意味着,您可以在不同的流程上创建这些控件。尝试调查一下。
如果您使用Windows 窗体,还有一种方法可以将这些WPF 控件转换为Windows 窗体 控件。
这将是一个复杂的解决方案,涉及您可能需要学习的大量技术。但是,嘿,您会在不同的进程中获得每个选项卡。
参考资料:
Using MAF (
Managed Add-in Framework
) with WPF, you can create a Control on a different AppDomain.That means, you can create these controls on different processes. Try looking into that.
If you are using Windows Forms, there is also a way to get these WPF controls to Windows Forms controls.
It will be a complex solution involving a bunch of technologies you may have to learn. But hey, you get each tab in different processes.
References: