码迷,mamicode.com
首页 > Windows程序 > 详细

C#设置自定义文件图标实现双击启动

时间:2020-02-28 15:43:13      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:try   定义   ica   val   应用程序   creates   art   rms   应用   

修改注册表,双击文件直接打开

string strProject = "Exec";
string p_FileTypeName =".cdb";//文件后缀
            string fileName = System.Windows.Forms.Application.ExecutablePath;// 获取启动了应用程序的可执行文件的路径及文件名
            //string startPath = System.Windows.Forms.Application.StartupPath;//获取启动了应用程序的可执行文件的路径
       //注册文件类型            
       
Registry.ClassesRoot.CreateSubKey(p_FileTypeName).SetValue("", strProject, RegistryValueKind.String); using (RegistryKey key = Registry.ClassesRoot.CreateSubKey(strProject)) { //设置图标 RegistryKey iconKey = key.CreateSubKey("DefaultIcon"); iconKey.SetValue("", System.Windows.Forms.Application.StartupPath + "\\ooopic_1564036072.ico"); //设置默认启动程序 key.CreateSubKey(@"Shell\Open\Command").SetValue("", fileName + " \"%1\"", RegistryValueKind.ExpandString); }

 

C#设置自定义文件图标实现双击启动

标签:try   定义   ica   val   应用程序   creates   art   rms   应用   

原文地址:https://www.cnblogs.com/wangyonglai/p/12377266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!