示例 Python 父文件:
class myClass( wx.Frame ):
def __init__(self):
print "Prepare execute"
self.MyThread = Thread.RunBackground( './child.py' , ( '--username' , 'root' ) );
print "Executing... Do you like this app?"
self.MyThread.start();
def onClose( self , evt ):
self.MyThread.close()
self.exit();
app = MyClass()
我需要知道如何使用 Python 在后台运行脚本。这个想法是可以使用主窗口,即使第二个过程有效。