vote up 5 vote down star
1

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 with a button for reverting to default color settings. By default value I mean what I set in Settings.settings at design time. Is there a way to read the default settings from Properties.Settings? I was hoping there would be something like:

Color defCellColor = Properties.Settings.Default.CellBackgroundColor.DefaultValue;

or even:

Color defCellColor = (Color)Properties.Settings.Default.GetDefaultValue("CellBackgroundColor");

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?

flag

4 Answers

vote up 7 vote down check

@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"
link|flag
vote up 0 vote down
Properties.Settings.Default.<property> // returns default value for <property>
link|flag
vote up 0 vote down

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.
link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.