系统找不到指定的文件-Winforms / SnippingTool

时间:2018-07-12 01:48:47

标签: c# winforms

我有非常简单的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);
            }
        }

enter image description here

enter image description here

我在这里想念什么?

0 个答案:

没有答案