我已经尝试使用计时器通过当前目录读取文件并在循环采样时将其显示在标签上: “正在初始化加载引用...”,然后遍历每个名称,并显示到标签,例如一些流行的应用程序E.G Photoshop .....在启动时,它将显示引用...
if(File.Exists(Path.Combine(Directory.GetCurrentDirectory(),“ Updater.exe”)))
{
System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
timer.Interval = 10;
timer.Tick += new EventHandler(timer_tick);
timer.Start();
}
void timer_tick(对象发送者,EventArgs e){
string[] files Directory.GetFiles(Directory.GetCurrentDirectory());
foreach (string file in files)
{
label4.Text = string.Format("{0}", file.ToString());
}
}