是否可以使用wpf openfiledialog打开.exe文件

时间:2016-04-07 15:23:03

标签: c# wpf

已经为我的文档下的文件夹下的某些Windows应用程序创建了快捷方式,我想要做的就是使用按钮的单击事件处理程序来调用这些应用程序。 我的代码如下:

   Stream myStream = null;
        OpenFileDialog openFileDialog1 = new OpenFileDialog();

        openFileDialog1.InitialDirectory = "c:\\SomeTestFolder";
        //openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
        //openFileDialog1.FilterIndex = 2;
        openFileDialog1.RestoreDirectory = true;

        if (openFileDialog1.ShowDialog() == true)
        {
            try
            {
                if ((myStream = openFileDialog1.OpenFile()) != null)
                {
                    using (myStream)
                    {
                        // Insert code to read the stream here.
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
            }
        }

你可以看到这个当前打开一个快捷方式的文件夹我的问题是当我点击应用程序应该启动的任何捷径时,我如何调整这个以启用我? 提前谢谢你

0 个答案:

没有答案