溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#操作注冊表實(shí)例分析

發(fā)布時(shí)間:2021-12-02 11:37:25 來源:億速云 閱讀:140 作者:iii 欄目:編程語言

這篇文章主要講解了“C#操作注冊表實(shí)例分析”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C#操作注冊表實(shí)例分析”吧!

在下面的例子里,要注意:

建項(xiàng)函數(shù):CreateSubKey()

建子鍵函數(shù):SetValue();

class Program   //C#操作注冊表實(shí)例實(shí)踐{   static string Generateguid()//建立GUID值的函數(shù)  {  return System.Guid.NewGuid().ToString();  }  static void Main(string[] args)  {  RegistryKey pregkey;  string preName;  //pregkey = Registry.CurrentUser.OpenSubKey(  "Control Panel\\Desktop\\WindowMetrics",true);  pregkey = Registry.LocalMachine.OpenSubKey(  "SOFTWARE\\Microsoft\\Internet Explorer\\Extensions",true);  //以只讀方式檢索子項(xiàng)  if (pregkey == null)  {  Console.WriteLine("該鍵值不存在");      }  //C#操作注冊表實(shí)例實(shí)踐else {  preName = Generateguid();  Console.WriteLine(preName);  Console.WriteLine("找到該鍵值");  preName = "{" + preName + "}";  //pregkey.SetValue("MinAnimate","1");  pregkey.CreateSubKey(preName);  //建立子項(xiàng)  pregkey = Registry.LocalMachine.OpenSubKey(  "SOFTWARE\\Microsoft\\Internet Explorer\\Extensions\\"+preName,   true);  //pregkey.SetValue("bbbbb", "0");  //建立子鍵,如果有此子鍵,則設(shè)值。  pregkey.SetValue("ButtonText", "添加");  //鼠標(biāo)放到bar上時(shí)顯示的文字  pregkey.SetValue("CLSID",   "{1FBA04EE-3024-11d2-8F1F-0000F87ABD16}");  //CLSID固定  pregkey.SetValue("Default Visible", "yes");  //默認(rèn)可看見  ,C#操作注冊表實(shí)例實(shí)踐pregkey.SetValue("Exec", "D:/IEbar/IEpinout.exe");  //關(guān)聯(lián)的exe文件  pregkey.SetValue("HotIcon", "D:/IEbar/Icon2.ico");  //鼠標(biāo)放到bar上時(shí)顯示的圖樣  pregkey.SetValue("Icon", "D:/IEbar/Icon1.ico");  //鼠標(biāo)未放在bar上時(shí)顯示的圖樣  //pregkey.SetValue("MenuStatusBar", "楊");  //pregkey.SetValue("MenuText", "我是楊!");       }  //C#操作注冊表實(shí)例實(shí)踐pregkey.Close();  }  }

此例子在vs2005,xp系統(tǒng)下調(diào)試通過。

生成exe文件,直接運(yùn)行,然后打開ie查看工具欄上的效果。

注意:必需要有"D:/IEbar/Icon2.ico"和"D:/IEbar/Icon1.ico"這兩個(gè)文件,否則在ie上看不出效果。

感謝各位的閱讀,以上就是“C#操作注冊表實(shí)例分析”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對C#操作注冊表實(shí)例分析這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI