1. QT开启外部程序后,当退出时,怎么关闭
进程关闭外部程序:QString KillStr = "taskkill /f /im main.exe";QProcess *Process = new QProcess(this);Process->start(KillStr);