搜索结果
查询Tags标签: OpenSubKey,共有 3条记录-
c# 添加系统右键菜单(Windows11以前)
今天介绍一下在注册表中添加系统右键菜单实现在文件夹的右键菜单中添加,删除以及查找是否已经添加的方法。注意这里的方法仅限于Windows11之前使用,Windows11默认的右键菜单已经改变,需要使用其他方式处理。查询是否存在RegistryKey shell = Registry.ClassesRoot.Open…
2022/7/13 5:20:18 人评论 次浏览 -
C#程序自启动
在窗体加载事件里面加入下述代码://设置开机自启动RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);registryKey.SetValue("CameraVision",Application.ExecutablePath);
2021/12/8 9:17:34 人评论 次浏览 -
C#程序自启动
在窗体加载事件里面加入下述代码://设置开机自启动RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);registryKey.SetValue("CameraVision",Application.ExecutablePath);
2021/12/8 9:17:34 人评论 次浏览