您好,登錄后才能下訂單哦!
這篇文章主要講解了“C#操作注冊表實例分析”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C#操作注冊表實例分析”吧!
在下面的例子里,要注意:
建項函數:CreateSubKey()
建子鍵函數:SetValue();
class Program //C#操作注冊表實例實踐{ static string Generateguid()//建立GUID值的函數 { 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); //以只讀方式檢索子項 if (pregkey == null) { Console.WriteLine("該鍵值不存在"); } //C#操作注冊表實例實踐else { preName = Generateguid(); Console.WriteLine(preName); Console.WriteLine("找到該鍵值"); preName = "{" + preName + "}"; //pregkey.SetValue("MinAnimate","1"); pregkey.CreateSubKey(preName); //建立子項 pregkey = Registry.LocalMachine.OpenSubKey( "SOFTWARE\\Microsoft\\Internet Explorer\\Extensions\\"+preName, true); //pregkey.SetValue("bbbbb", "0"); //建立子鍵,如果有此子鍵,則設值。 pregkey.SetValue("ButtonText", "添加"); //鼠標放到bar上時顯示的文字 pregkey.SetValue("CLSID", "{1FBA04EE-3024-11d2-8F1F-0000F87ABD16}"); //CLSID固定 pregkey.SetValue("Default Visible", "yes"); //默認可看見 ,C#操作注冊表實例實踐pregkey.SetValue("Exec", "D:/IEbar/IEpinout.exe"); //關聯的exe文件 pregkey.SetValue("HotIcon", "D:/IEbar/Icon2.ico"); //鼠標放到bar上時顯示的圖樣 pregkey.SetValue("Icon", "D:/IEbar/Icon1.ico"); //鼠標未放在bar上時顯示的圖樣 //pregkey.SetValue("MenuStatusBar", "楊"); //pregkey.SetValue("MenuText", "我是楊!"); } //C#操作注冊表實例實踐pregkey.Close(); } }
此例子在vs2005,xp系統下調試通過。
生成exe文件,直接運行,然后打開ie查看工具欄上的效果。
注意:必需要有"D:/IEbar/Icon2.ico"和"D:/IEbar/Icon1.ico"這兩個文件,否則在ie上看不出效果。
感謝各位的閱讀,以上就是“C#操作注冊表實例分析”的內容了,經過本文的學習后,相信大家對C#操作注冊表實例分析這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。