程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 用Visual C#打造個性化的IE浏覽器(2)

用Visual C#打造個性化的IE浏覽器(2)

編輯:關於C語言

用C#編程來實現的方法如下:

1.IE窗口的動感效果

//-------------------------------------
// ChangeIE.cs ? 2004 by yudehui
//-------------------------------------
using System;
using Microsoft.Win32; //對注冊表操作一定要引用這個命名空間
namespace ChangeIE
{
class ChangeIE
{
[STAThread]
static void Main(string[] args)
{
RegistryKey pregkey ;
pregkey = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop\\WindowMetrics",true);
if (pregkey==null)
{
Console.WriteLine("鍵值不存在");
}
else
{
pregkey.SetValue("MinAnimate","1");
pregkey.SetValue("MaxAnimate","1");
Console.WriteLine("修改成功");
}
pregkey. Close;
}
}
}

2.改變IE工具欄的背景

//-------------------------------------
// ChangeIE.cs ? 2004 by yudehui
//-------------------------------------
using System;
using Microsoft.Win32; //對注冊表操作一定要引用這個命名空間
namespace ChangeIEbackColor
{
class ChangeIEbackColor
{
[STAThread]
static void Main(string[] args)
{
RegistryKey pregkey ;
pregkey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Internet" +
"Explorer\\Toolbar\\Explorer ",true);
if (pregkey==null)
{
Console.WriteLine("鍵值不存在");
}
else
{
pregkey.SetValue("BackBitmap","C:\\Windows\\Greenstone.bmp");
Console.WriteLine("修改成功");
}
pregkey.Close;
}
}
}

以上兩個簡單的例子只是對IE進行了簡單的設定,相信大家對C#下對注冊表的操作已經有了一定的了解。有興趣的讀者可以自己對IE進行更個性化的修改,以上代碼在Windows2003+VS.Net2003下調試通過。

注:在對注冊表進行操作有一定的危險性,操作時要先進行備份,以防止誤操作,而導致系統崩潰。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved