在VS2015 WPF解决方案中,如何为exe添加开始菜单项?

时间:2017-02-15 17:32:56

标签: c# wpf vb.net visual-studio

我有一个与WPF项目打包在一起的WinForms应用程序。我已将.exe设置为“Content”和“AlwaysCopy”,并在安装时包含在安装文件夹中。

我想在开始菜单中包含一个快捷方式,用于打开此EXE应用。我该怎么做?

1 个答案:

答案 0 :(得分:-1)

请尝试以下操作:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

namespace ConsoleApplication1
{
    class Program
    {
        const string exe = @"c:\Windows\System32\notepad.exe";
        static void Main(string[] args)
        {
            Process process = new Process();
            ProcessStartInfo info = new ProcessStartInfo(exe);
            process.StartInfo = info;
            process.Start();
        }
    }



}