30

I have a number of application settings (in user scope) for my custom grid control. Most of them are color settings. I have a form where the user can customize these colors and I want to add a button for reverting to default color settings. How can I read the default settings?

For example:

  1. I have a user setting named CellBackgroundColor in Properties.Settings.
  2. At design time I set the value of CellBackgroundColor to Color.White using the IDE.
  3. User sets CellBackgroundColor to Color.Black in my program.
  4. I save the settings with Properties.Settings.Default.Save().
  5. User clicks on the Restore Default Colors button.

Now, Properties.Settings.Default.CellBackgroundColor returns Color.Black. How do I go back to Color.White?

Ozgur Ozcitak
  • 10,409
  • 8
  • 46
  • 56

7 Answers7

42

@ozgur,

Settings.Default.Properties["property"].DefaultValue // initial value from config file

Example:

string foo = Settings.Default.Foo; // Foo = "Foo" by default
Settings.Default.Foo = "Boo";
Settings.Default.Save();
string modifiedValue = Settings.Default.Foo; // modifiedValue = "Boo"
string originalValue = Settings.Default.Properties["Foo"].DefaultValue as string; // originalValue = "Foo"
aku
  • 122,288
  • 32
  • 173
  • 203
  • 1
    This only works for scalars. I have a property that is of type System.Collections.Specialized.StringCollection. Using the above returns the raw XML, requiring you to pick through it and create the collection manually. – Bob Denny Jan 26 '18 at 23:04
  • Hi @BobDenny, would you explain how you do it? – ChihHao Jan 08 '19 at 05:43
  • This only works if your property is a `string`. If it's anything else, you won't be able to assign it directly back to the `Settings` object's corresponding property. – Matt Arnold Aug 07 '23 at 11:05
14

Reading "Windows 2.0 Forms Programming", I stumbled upon these 2 useful methods that may be of help in this context:

ApplicationSettingsBase.Reload

ApplicationSettingsBase.Reset

From MSDN:

Reload contrasts with Reset in that the former will load the last set of saved application settings values, whereas the latter will load the saved default values.

So the usage would be:

Properties.Settings.Default.Reset()
Properties.Settings.Default.Reload()
Ohad Schneider
  • 36,600
  • 15
  • 168
  • 198
  • I find "Reload contrasts with Reset in that the former will load the last set of saved application settings values, whereas the latter will load the saved default values." is not always true. E.g. After .Save then .Reset, .Reload does not load the set saved by .Save - it has no effect. – ChrisJJ Aug 23 '11 at 16:56
  • 1
    What if you want to reset only one setting and not all of them? – Kyle Delaney Jul 20 '17 at 01:22
  • 1
    @KyleDelaney looks like aku's answer above allows that (https://stackoverflow.com/a/49289/67824). – Ohad Schneider Jul 20 '17 at 07:55
5

Im not really sure this is necessary, there must be a neater way, otherwise hope someone finds this useful;

public static class SettingsPropertyCollectionExtensions
{
    public static T GetDefault<T>(this SettingsPropertyCollection me, string property)
    {
        string val_string = (string)Settings.Default.Properties[property].DefaultValue;

        return (T)Convert.ChangeType(val_string, typeof(T));
    }
}

usage;

var setting = Settings.Default.Properties.GetDefault<double>("MySetting");
expelledboy
  • 2,033
  • 18
  • 18
3

Properties.Settings.Default.Reset() will reset all settings to their original value.

2

I've got round this problem by having 2 sets of settings. I use the one that Visual Studio adds by default for the current settings, i.e. Properties.Settings.Default. But I also add another settings file to my project "Project -> Add New Item -> General -> Settings File" and store the actual default values in there, i.e. Properties.DefaultSettings.Default.

I then make sure that I never write to the Properties.DefaultSettings.Default settings, just read from it. Changing everything back to the default values is then just a case of setting the current values back to the default values.

Matt Warren
  • 10,279
  • 7
  • 48
  • 63
  • I also prefer this approach, since calling {Settings.Default.Properties["Foo"] as string} can result in an exception if the settings name is changed. Also, the casting can fail. I think between duplication of data (user default and app default) and type safety, duplication is the lesser evil here – Ohad Schneider Jan 15 '10 at 22:34
  • BTW, making sure you never write to the default settings is easy - make all settings there application scoped, rather than user scoped – Ohad Schneider Jan 15 '10 at 22:56
1

I found that calling ApplicationSettingsBase.Reset would have the effect of resetting the settings to their default values, but also saving them at the same time.

The behaviour I wanted was to reset them to default values but not to save them (so that if the user did not like the defaults, until they were saved they could revert them back).

I wrote an extension method that was suitable for my purposes:

using System;
using System.Configuration;

namespace YourApplication.Extensions
{
    public static class ExtensionsApplicationSettingsBase
    {
        public static void LoadDefaults(this ApplicationSettingsBase that)
        {
            foreach (SettingsProperty settingsProperty in that.Properties)
            {
                that[settingsProperty.Name] =
                    Convert.ChangeType(settingsProperty.DefaultValue,
                                       settingsProperty.PropertyType);
            }
        }
    }
}
ta.speot.is
  • 26,914
  • 8
  • 68
  • 96
1

How do I go back to Color.White?

Two ways you can do:

  • Save a copy of the settings before the user changes it.
  • Cache the user modified settings and save it to Properties.Settings before the application closes.
jfs
  • 16,758
  • 13
  • 62
  • 88