在我的应用程序中,我允许用户打开帮助文件。
帮助文件只是一个使用默认帮助打开的 *.chm 文件。
我用以下命令打开它
Process.Start(stringPathToTheFile);
问题是用户可以在帮助菜单上单击两次或更多次,并且文件将在他们单击时打开多次。
我的第一个问题是我必须确保用户不能多次打开帮助文件:
我知道该 process.HasExcited
属性,但我不能使用它,因为如果我打开我的软件,单击帮助,关闭我的软件,再次打开它并单击帮助,我最终会打开两个帮助文件。
编辑 这似乎不是很清楚,所以这里是我的意思的一个小样本。
用这个创建一个控制台应用程序:
private static void Main()
{
String file = @"c:\testFile.txt";
while (true)
{
Console.ReadLine();
OpenProcessIfNeeded(file);
}
}
private static void OpenProcessIfNeeded(String file)
{
//Do the check here
if (true)
{
Process process = Process.Start(file);
}
}
如果我使用 HasExited(或事件),我将有这种代码:
private static readonly Dictionary<String, Process> _startedProcess = new Dictionary<string, Process>();
private static void Main()
{
String file = @"c:\testFile.txt";
while (true)
{
Console.ReadLine();
OpenProcessIfNeeded(file);
}
}
private static void OpenProcessIfNeeded(String file)
{
if (!_startedProcess.ContainsKey(file) || _startedProcess[file].HasExited)
{
Process process = Process.Start(file);
_startedProcess[file] = process;
}
}
当您保持控制台应用程序打开时,这项工作有效,但如果您关闭应用程序并重新打开它,它将不起作用,因为它_startedProcess
不包含该进程。
而且我找不到正确的过程,Process.GetProcesses()
因为我没有看到任何可以让我知道它是哪个过程的属性。
那么,如何查看当前是否有进程正在显示我的文件?我无法搜索进程,因为 process( hh.exe
) 可用于读取其他文件。
如果我已经打开了这个文件,我的第二个愿望是专注于现有的进程。
谢谢您的帮助