C#写注册表

来源:互联网 发布:阿里云专用网络配置 编辑:程序博客网 时间:2024/05/16 19:12

 

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using Microsoft.Win32;

namespace WindowsApplication1
{
    
/// <summary>
    
/// Form1 的摘要说明。
    
/// </summary>

    public class Form1 : System.Windows.Forms.Form
    
{
        
private System.Windows.Forms.Button button1;
        
private System.Windows.Forms.Button button2;
        
private System.Windows.Forms.ListBox listBox1;
        
/// <summary>
        
/// 必需的设计器变量。
        
/// </summary>

        private System.ComponentModel.Container components = null;

        
public Form1()
        
{
            
//
            
// Windows 窗体设计器支持所必需的
            
//
            InitializeComponent();

            
//
            
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
            
//
        }


        
/// <summary>
        
/// 清理所有正在使用的资源。
        
/// </summary>

        protected override void Dispose( bool disposing )
        
{
            
if( disposing )
            
{
                
if (components != null
                
{
                    components.Dispose();
                }

            }

            
base.Dispose( disposing );
        }


        
Windows 窗体设计器生成的代码

        
/// <summary>
        
/// 应用程序的主入口点。
        
/// </summary>

        [STAThread]
        
static void Main() 
        
{
            Application.Run(
new Form1());
        }


        
private void button1_Click(object sender, System.EventArgs e)
        
{
            RegistryKey hklm
=Registry.LocalMachine;
            RegistryKey run
=hklm.OpenSubKey("SOFTWARE").OpenSubKey("Microsoft").OpenSubKey("Windows").OpenSubKey("CurrentVersion").OpenSubKey("Run");//打开注册表
            Object obj=run.GetValueNames();//读取数据
            string [] stra=(string[])obj;
            
for(int i=0;i<stra.Length;i++)
            
{
                listBox1.Items.Add(stra[i]);
            }

            RegistryKey a
=hklm.CreateSubKey(@"SOFTWARE/Microsoft/Windows/CurrentVersion/Run");//打开注册表
            a.SetValue("aa",stra);//写入数据
        }

    }

}

原创粉丝点击