建立数据文件与程序的关联

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了建立数据文件与程序的关联相关的知识,希望对你有一定的参考价值。

实现效果:

  技术分享图片

知识运用:

  public void DeleteSubKey(string subkey)    //删除指定的子项

实现代码:

        public void RefreshSystem()
        {
            Process[] ps = Process.GetProcessesByName("explorer");
            foreach (Process p in ps)
            {
                p.Kill();  
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                string notePath = "C:\\Windows\\System32\\notepad.exe";
                string extFile = ".ffy";
                string myContent = "text/plain";
                RegistryKey rk = Registry.ClassesRoot;
                rk = rk.CreateSubKey(extFile);
                rk.SetValue("","自定义的拓展名");
                rk.SetValue("Content Type",myContent);
                rk=rk.CreateSubKey("shell\\open\\Command");
                rk.SetValue("",notePath+" %1");
                rk.Close();
                if (MessageBox.Show("关联成功!") == DialogResult.OK)
                {
                    RefreshSystem(); //刷新explorer进程
                }
            }
            catch (Exception ex)
            { MessageBox.Show(ex.Message); }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            string extFile = ".ffy";
            RegistryKey rk = Registry.ClassesRoot;
            rk.CreateSubKey(extFile + "\\shell\\open\\Command");
            rk.DeleteSubKey(extFile+"\\shell\\open\\Command");
            if (MessageBox.Show("关联已取消!") == DialogResult.OK)
            {
                RefreshSystem(); //刷新explorer进程
            }
        }

  

以上是关于建立数据文件与程序的关联的主要内容,如果未能解决你的问题,请参考以下文章

怎么创建关联

片段未与片段管理器关联。 (对话片段)

使用LitePal建立表关联

片段中的 super.onCreateView

如何用Eclipse建立一个Java应用程序

SQL数据库中表与表之间的关联怎么建立