Ejemplo n.º 1
0
    public static Color Get(String Name)
    {
        int RGBValue = (int)RegistryManager.GetValue(Prefix + Name);

        return(Color.FromArgb(RGBValue));
    }
Ejemplo n.º 2
0
    public static void Set(String Name, Color Value)
    {
        int RGBValue = Value.ToArgb();

        RegistryManager.SetValue(Prefix + Name, (object)RGBValue);
    }