资源管理器的自动完成功能

实现效果:

  

  

  

知识运用:

  AutoComplete子键下的Apend Completion键

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            RegistryKey rk=Registry.CurrentUser.OpenSubKey(@"SoftwareMicrosoftWindowsCurrentVersionExplorerAutoComplete",true);
            rk.SetValue("Append Completion","yes",RegistryValueKind.String);
        }

  

原文地址:https://www.cnblogs.com/feiyucha/p/10332241.html