⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 注册表访问.txt

📁 c#的知识类库
💻 TXT
字号:
using Microsoft.Win32;
			RegistryKey SoftwareKey=Registry.LocalMachine.OpenSubKey("Software",true);
			RegistryKey MovecontKey=SoftwareKey.CreateSubKey("Movecont");//建立
			RegistryKey SelfPlaceKey=MovecontKey.CreateSubKey("SelfPlace");//建立
			SelfPlaceKey.SetValue("BackColor",(object)BackColor.ToKnownColor());//写
			SelfPlaceKey.SetValue("Red",(object)(int)BackColor.R);//红
			SelfPlaceKey.SetValue("Green",(object)(int)BackColor.G);//绿
			SelfPlaceKey.SetValue("Blue",(object)(int)BackColor.B);//蓝
			SelfPlaceKey.SetValue("Width",(object)Width);//宽
			SelfPlaceKey.SetValue("Height",(object)Height);//高
			SelfPlaceKey.SetValue("X",(object)DesktopLocation.X);//左上角X坐标
			SelfPlaceKey.SetValue("Y",(object)DesktopLocation.Y);//左上角Y坐标
			SelfPlaceKey.SetValue("WindowState",(object)WindowState.ToString());//左上角Y坐标

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -