91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

C# 動態設置是否允許運行注冊表,實際上應該是是否允許修改注冊表,注冊表當然要運行了,要不然系統要崩潰的,一般來說,注冊表的鍵值是不能隨便改的,像有些優化軟件都有禁止修改注冊表的選項,以確保Windows設置不被破壞,那么本代碼就實現了這個小功能,僅供參閱。

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
//download?by?http://www.codefans.net
using?Microsoft.Win32;?
namespace?Case08_10
{
????public?partial?class?Form1?:?Form
????{
????????public?Form1()
????????{
????????????InitializeComponent();
????????}

????????private?void?button1_Click(object?sender?EventArgs?e)
????????{
????????????try
????????????{
????????????????RegistryKey?rgK?=?Registry.CurrentUser.CreateSubKey(@“Software\Microsoft\Windows\CurrentVersion\Policies\System“);
????????????????rgK.SetValue(“DisableRegistryTools“?1?RegistryValueKind.DWord);
????????????????MessageBox.Show(this“禁示使用注冊表!““提示對話框“MessageBoxButtons.OK?MessageBoxIcon.Information?);
????????????}
????????????catch?
????????????{
????????????}
????????}

????????private?void?button2_Click(object?sender?EventArgs?e)
????????{
????????????try
????????????{
????????????????RegistryKey?rgK?=?Registry.CurrentUser;
????????????????rgK.DeleteSubKey(@“Software\Microsoft\Windows\CurrentVersion\Policies\System“);
????????????????MessageBox.Show(this?“啟用注冊表!“?“提示對話框“?MessageBoxButtons.OK?MessageBoxIcon.Information);
????????????}
????????????catch
????????????{
????????????}
????????}

????????private?void?button3_Click(object?sender?EventArgs?e)
????????{
????????????this.Close();
????????????Application.Exit();????//退出程序??
????????}
????}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

-----------?---------??----------?-----??----

????????????????41990????????????????????16


評論

共有 條評論