Embed SWT Composite into C# application

萝らか妹 提交于 2019-12-03 20:57:00

To put your SWT composite inside your winform you can start the SWT application in new process and then use Process.MainWindowHandle to get the child process window handle.

This article provide an example to composite another process.

This link is a specific solution for SWT inside winform and winform inside winform(change the process to start...).

In the solution I also demonstrate a way to communicate between the processes through the std-in/out.(there are a lot of questions about it)

Hint: The code in the repository is not a production code! (C# and Java)

I just want to provide a demo. when i have time, i will refactor the code...

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!