手机
当前位置:查字典教程网 >编程开发 >C#教程 >C#实现将应用程序设置为开机启动的方法
C#实现将应用程序设置为开机启动的方法
摘要:本文实例讲述了C#实现将应用程序设置为开机启动的方法。分享给大家供大家参考。具体如下:privatevoidWriteRegistry(){...

本文实例讲述了C#实现将应用程序设置为开机启动的方法。分享给大家供大家参考。具体如下:

private void WriteRegistry() { string strName = Application.ExecutablePath; if (File.Exists(strName)) { string strNewName = Path.GetFileName(strName); RegistryKey reg = Registry.LocalMachine.OpenSubKey("SOFTWAREMicrosoftWindowsCurrentVersionRun", true); if (reg == null) { reg = Registry.LocalMachine.CreateSubKey("SOFTWAREMicrosoftWindowsCurrentVersionRun"); } else { if (reg.GetValue(strNewName) == null) { reg.SetValue(strNewName, strName); } } } }

希望本文所述对大家的C#程序设计有所帮助。

【C#实现将应用程序设置为开机启动的方法】相关文章:

C#中Array与ArrayList用法及转换的方法

C# 读取指定路径配置文件的方法

关于C#程序优化的五十种方法

用C#对ADO.NET数据库完成简单操作的方法

C#调用Matlab生成的dll方法的详细说明

C# 获取属性名的方法

c#实现用SQL池,多线程定时批量执行SQL语句的方法

C# 设置系统日期格式的方法

C#实现窗体淡入淡出效果的方法总结

c# 获取数据库中所有表名称的方法

精品推荐
分类导航