這篇文章主要講解了“C#操作注冊(cè)表實(shí)例分析”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“C#操作注冊(cè)表實(shí)例分析”吧!
創(chuàng)新互聯(lián)公司主打移動(dòng)網(wǎng)站、網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、網(wǎng)站改版、網(wǎng)絡(luò)推廣、網(wǎng)站維護(hù)、申請(qǐng)域名、等互聯(lián)網(wǎng)信息服務(wù),為各行業(yè)提供服務(wù)。在技術(shù)實(shí)力的保障下,我們?yōu)榭蛻舫兄Z穩(wěn)定,放心的服務(wù),根據(jù)網(wǎng)站的內(nèi)容與功能再?zèng)Q定采用什么樣的設(shè)計(jì)。最后,要實(shí)現(xiàn)符合網(wǎng)站需求的內(nèi)容、功能與設(shè)計(jì),我們還會(huì)規(guī)劃穩(wěn)定安全的技術(shù)方案做保障。
在下面的例子里,要注意:
建項(xiàng)函數(shù):CreateSubKey()
建子鍵函數(shù):SetValue();
class Program //C#操作注冊(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#操作注冊(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#操作注冊(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#操作注冊(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#操作注冊(cè)表實(shí)例分析”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)C#操作注冊(cè)表實(shí)例分析這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!