zoukankan      html  css  js  c++  java
  • FileRegistrationHelper 为文件类型注册默认打开方式

    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 + @"shellopencommand", 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,修改该文件:

            <requestedExecutionLevel level="asInvoker" uiAccess="false" />

    修改后:

            <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />

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

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

  • 相关阅读:
    向MySql中插入中文时出现乱码
    MySql插入记录时判断
    SuperGridControl 使用小技巧
    Winform开发中常见界面的DevExpress处理操作
    mysql优化之索引建立的规则
    App性能优化浅谈
    AndroidManifest具体解释之Application(有图更好懂)
    算法——递归思想解决排列组合问题
    Windows App开发之集合控件与数据绑定
    table行随鼠标变色
  • 原文地址:https://www.cnblogs.com/RedSky/p/6951905.html
Copyright © 2011-2022 走看看