我在WinForm中有一个Picture Box,这个.exe文件(OpenGL项目.exe)我在一个进程中运行它:
string exepath = @"C:\Users\Dana\Desktop\release\rel.exe";
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = exepath;
psi.WorkingDirectory = Path.GetDirectoryName(exepath);
Process.Start(psi);
可以在图片框内显示处理结果吗?