사용하여 ProcessStartInfo를이 앱
당신의 트 리뷰 노드를 만들 때, 당신의 프로세스를 실행 TreeNode.Tag 속성의 각 내부 응용 프로그램의 전체 경로를 배치하고 검색보다 효율적으로 제어 할 수 있도록
using System.Diagnostics;
private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
//Retrieving the node data
TreeNode myClickedNode = (TreeNode)sender;
//The pointer to your new app
ProcessStartInfo myAppProcessInfo = new ProcessStartInfo(myClickedNode.Tag);
//You can set how the window of the new app will start
myAppProcessInfo.WindowStyle = ProcessWindowStyle.Maximized;
//Start your new app
Process myAppProcess = Process.Start(myAppProcessInfo);
//Using this will put your TreeNode app to sleep, something like System.Threading.Thread.Sleep(int miliseconds) but without the need of telling the app how much it will wait.
myAppProcess.WaitForExit();
}
모든 속성에 대한
이
+1 코드 스 니프 – JeffH