我有非常简单的WinForms应用程序,需要通过单击按钮来打开SnippingTool。
由于某种原因,我收到如下所示的“ The system cannot find the file specified
”错误。
文件肯定存在。
这是我的代码;
private void buttonSnipping_Click(object sender, EventArgs e)
{
try
{
Process myProcess = new Process();
myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.FileName = @"C:\Windows\System32\SnippingTool.exe";
myProcess.Start();
}
catch (Exception exception)
{
MessageBox.Show(exception.Message);
}
}
我在这里想念什么?