Application Settings in Windows Forms is a convenient way to store application properties. However, in my current project, these settings are dotted with color definitions that are more or less static, causing noise in app.config. Is there any good way to prevent setting parameters in app.config by simply relying on the default value?
I tried moving the selected options as resources, but as far as I can tell, the Windows Forms Designer in Visual Studio does not provide any means to assign color resource values to properties on controls.
source share