我已经检查了this question。
这是我的代码
private void RegisterInStartup(bool isChecked)
{
RegistryKey registryKey = Registry.CurrentUser.OpenSubKey
("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
if (isChecked)
{
registryKey.SetValue("CTIPopupForIPPhone", Application.ExecutablePath);
}
else
{
registryKey.DeleteValue("CTIPopupForIPPhone");
}
}
在表格的构造函数中,我添加了这个:
RegisterInStartup(true);
但是当我重新启动Windows时,应用程序不会自动启动。我错过了什么?