📄 registry.cs
字号:
using System;
using Addot.Internals;
namespace Addot.Win32
{
/// <summary>
/// Microsoft.Win32 implementation for the .Net Compact Framework.
/// Please, refer to the .Net framework for the complete documentation.
/// </summary>
public sealed class Registry
{
public static readonly RegistryKey ClassesRoot = new RegistryKey((uint)NativeRegistry.RootKey.HKEY_CLASSES_ROOT, null, null);
public static readonly RegistryKey CurrentUser = new RegistryKey((uint)NativeRegistry.RootKey.HKEY_CURRENT_USER, null, null);
public static readonly RegistryKey LocalMachine = new RegistryKey((uint)NativeRegistry.RootKey.HKEY_LOCAL_MACHINE, null, null);
public static readonly RegistryKey Users = new RegistryKey((uint)NativeRegistry.RootKey.HKEY_USERS, null, null);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -