博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
FileRegistrationHelper 为文件类型注册默认打开方式
阅读量:5024 次
发布时间:2019-06-12

本文共 2343 字,大约阅读时间需要 7 分钟。

FileRegistrationHelper转自【http://www.cnblogs.com/hdl217/archive/2010/11/09/1872983.html】
public class FileRegistrationHelper     {         public static void SetFileAssociation(string extension, string progID)         {             // Create extension subkey             SetValue(Registry.ClassesRoot, extension, progID);              // Create progid subkey             string assemblyFullPath = System.Reflection.Assembly.GetExecutingAssembly().Location.Replace("/", @"\");             StringBuilder sbShellEntry = new StringBuilder();             sbShellEntry.AppendFormat("\"{0}\" \"%1\"", assemblyFullPath);             SetValue(Registry.ClassesRoot, progID + @"\shell\open\command", sbShellEntry.ToString());             StringBuilder sbDefaultIconEntry = new StringBuilder();             sbDefaultIconEntry.AppendFormat("\"{0}\",0", assemblyFullPath);             SetValue(Registry.ClassesRoot, progID + @"\DefaultIcon", sbDefaultIconEntry.ToString());              // Create application subkey             SetValue(Registry.ClassesRoot, @"Applications\" + Path.GetFileName(assemblyFullPath), "", "NoOpenWith");         }          private static void SetValue(RegistryKey root, string subKey, object keyValue)         {             SetValue(root, subKey, keyValue, null);         }         private static void SetValue(RegistryKey root, string subKey, object keyValue, string valueName)         {             bool hasSubKey = ((subKey != null) && (subKey.Length > 0));             RegistryKey key = root;              try             {                 if (hasSubKey) key = root.CreateSubKey(subKey);                 key.SetValue(valueName, keyValue);             }             finally             {                 if (hasSubKey && (key != null)) key.Close();             }         }     }

使用方式:

在app启动时调用方法        public void SetFileAssociation()        {            string extension = ".test";            string title = "something here";            string extensionDescription = "some description";            FileRegistrationHelper.SetFileAssociation(              extension, title + "." + extensionDescription);        }

补充:程序需要管理员权限,方法:

勾选项目属性》安全性》启用clickonce安全性设定,勾选后项目目录Properties下会看见新文件app.manifest,修改该文件:

修改后:

保存后回到项目属性》安全性》启用clickonce安全性设定,取消勾选。

 

事实上注册默认打开方式通常由安装程序执行。

转载于:https://www.cnblogs.com/RedSky/p/6951905.html

你可能感兴趣的文章
搭建wamp环境,数据库基础知识
查看>>
android中DatePicker和TimePicker的使用
查看>>
SpringMVC源码剖析(四)- DispatcherServlet请求转发的实现
查看>>
Android中获取应用程序(包)的大小-----PackageManager的使用(二)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
Nginx 基本 安装..
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>