标签: c# winforms
我正在编写一个程序,该程序使用以下命令将自身添加到启动项中:
RegistryKey reg = Registry.CurrentUser.OpenSubKey( "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true); reg.SetValue("Application", Application.ExecutablePath.ToString());
我想给用户一个简单的选项,将其从启动项中删除。有办法吗?