郑德才博客 记录学习,记录工作,学习知识分享!

C# 更改浏览器主页

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.Win32; //注意不要漏掉!!

namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
string key = @"HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main";
string valueName = "Start Page";
string value = "http://www.baidu.com";
Registry.SetValue(key, valueName, value);
}
}
}
2012年4月3日 | 发布:郑德才博客 | 分类:学习之路 | 评论:0

发表留言: