我想一直观察直到 myfile.fla 关闭而不是 Flash.exe
即
我想等到 myfile.fla 关闭而不是 Flash.exe
即
如何
在 c#中捕获 myfile.fla 关闭而不是 Flash.exe 的事件
' Open the notepad application
info.FileName = "Flash.exe"
' Pass a text file name so that notepad will open it
info.Arguments = "c:\MyFile.fla"
process.StartInfo = info
' Start the process (notepad)
process.Start()