C#编程-142:新增注册表

举报
彭世瑜 发表于 2021/08/14 01:02:45 2021/08/14
【摘要】 using System; using System.Windows.Forms; using Microsoft.Win32; namespace RegistryTestSetValue {     public&...
C#编程-142:新增注册表

C#编程-142:新增注册表


  1. using System;
  2. using System.Windows.Forms;
  3. using Microsoft.Win32;
  4. namespace RegistryTestSetValue
  5. {
  6.     public partial class Form1 : Form
  7.     {
  8.         public Form1()
  9.         {
  10.             InitializeComponent();
  11.         }
  12.  
  13.         private void btnSetup_Click(object sender, EventArgs e)
  14.         {
  15.             if (txtKey.Text == "") {
  16.                 MessageBox.Show("输入错误");
  17.                 return ;}
  18.             RegistryKey hklm = Registry.LocalMachine;
  19.             RegistryKey sys = hklm.OpenSubKey("System",true);
  20.             RegistryKey temp = sys.CreateSubKey(txtKey.Text);
  21.             temp.SetValue(txtName.Text,txtValue.Text);
  22.             //listBox1.Items.Clear();
  23.             foreach (string site in sys.GetSubKeyNames())
  24.             {
  25.                 if (txtKey.Text == site)
  26.                 {
  27.                     RegistryKey sitekey = sys.OpenSubKey(site);
  28.                     foreach (string svalue in sitekey.GetSubKeyNames())
  29.                     {
  30.                         listBox1.Items.Add(sitekey+svalue + " : " + sitekey.GetValue(svalue));
  31.                     }
  32.                 }
  33.             }
  34.         }
  35.  
  36.         private void Form1_Load(object sender, EventArgs e)
  37.         {
  38.             RegistryKey hklm = Registry.LocalMachine;
  39.             RegistryKey sys = hklm.OpenSubKey("System");
  40.             listBox1.Items.Clear();
  41.             foreach (string subkey in sys.GetSubKeyNames())
  42.             {
  43.                 listBox1.Items.Add(subkey);
  44.             }
  45.         }
  46.     }
  47. }

文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。

原文链接:pengshiyu.blog.csdn.net/article/details/81049044

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。