我尝试在 C# 中向注册表插入值,如下所示:
RegistryKey key;
key = Registry.CurrentUser.CreateSubKey("HKEY_LOCAL_MACHINE\\Drivers\\BuiltIn\\Touch");
key.SetValue("InitialState", 0x4, RegistryValueKind.DWord);
但什么也没发生
当我在 HKEY_LOCAL_MACHINE\\Drivers\\BuiltIn\\Touch
我插入值下手动插入时00000004 (Hexidecima)
,它可以工作
怎么做才对?