Are there any recommendations on when to use Application settings (not per user settings) vs. .config file <appsettings>?
When I use this to write to my app.config file: Configuration config =ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
Here\'s what I\'m doing. I have three properties: MomsBackground, DadsBackground and开发者_开发问答 ChosenBackground.
I was thinking either: An Appconfig file A generic .XML file and have the program load values at launch.
I have a .settings file (containing both User and Application s开发者_StackOverflowettings) that I would like to contain different values if built in Debug mode. Is there a supported or recommended wa
Perhaps this question has been asked before in a different way, but I haven’t been able to find it.
I am doing a movieplayer application and Iwant to activate 开发者_如何转开发certain settings about my application in settings.
开发者_如何学编程By default settings are stored at: C:\\Documents and Settings\\\\Local Settings\\Application Data\\<Project Name>
I\'d like to h开发者_Go百科ave a settings bundle behavior similar to the iPhone WiFi settings. If you select the toggle switch and set it to on, an optional group with the specific settings appears. H
This question already has answers here: Pros and cons of AppSettings vs applicationSettings (.NET app.config / Web.config)