我正在编写一个打开程序的代码,例如:
System.Diagnostics.Process aProcess = new System.Diagnostics.Process();
aProcess.StartInfo = new System.Diagnostics.ProcessStartInfo(
System.IO.Path.Combine(Environment.GetFolderPath(
Environment.SpecialFolder.ApplicationData), @"MyApp.exe"));
aProcess.Start();
MyApp.exe 不是点网程序。我想从任务栏中隐藏该程序的图标。