It definitely works. Try the following:
public void Test(int value) { Properties.Settings settings = Properties.Settings.Default; MessageBox.Show("Last SliderWidth = " + settings.SliderWidth.ToString()); settings.SliderWidth = value; settings.Save(); }
But the saved value will not be displayed in the designer window, which you show in the screenshot. These are the initial defaults.
source share