我有一个与WPF项目打包在一起的WinForms应用程序。我已将.exe设置为“Content”和“AlwaysCopy”,并在安装时包含在安装文件夹中。
我想在开始菜单中包含一个快捷方式,用于打开此EXE应用。我该怎么做?
答案 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();
}
}
}