Best practice to save application settings in a Windows Forms Application

What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. This path can be modified by the user, by using the options form I provide.

Now, I want to save the path value to a file for later use. This would be one of the many settings saved to this file. This file would sit directly in the application folder.

I understand three options are available:

  • ConfigurationSettings file (appname.exe.config)
  • Registry
  • Custom XML file
  • I read that the .NET configuration file is not foreseen for saving values back to it. As for the registry, I would like to get as far away from it as possible.

    Does this mean that I should use a custom XML file to save configuration settings? If so, I would like to see code example of that (C#).

    I have seen other discussions on this subject, but it is still not clear to me.


    If you work with Visual Studio then it is pretty easy to get persistable settings. Right click on the project in Solution Explorer, choose Properties. Select the Settings tab, click on the hyperlink if settings doesn't exist. Use the Settings tab to create application settings. Visual Studio creates the files Settings.settings and Settings.Designer.settings that contain the singleton class Settings inherited from ApplicationSettingsBase. You can access this class from your code to read/write application settings:

    Properties.Settings.Default["SomeProperty"] = "Some Value";
    Properties.Settings.Default.Save(); // Saves settings in application configuration file
    

    This technique is applicable both for console, Windows Forms and other project types.

    Note that you need to set the scope property of your settings. If you select Application scope then Settings.Default.< your property > will be read-only.


    如果您计划将其保存到与您的可执行文件相同的目录中的文件中,以下是使用JSON格式的一个很好的解决方案:

    using System;
    using System.IO;
    using System.Web.Script.Serialization;
    
    namespace MiscConsole
    {
        class Program
        {
            static void Main(string[] args)
            {
                MySettings settings = MySettings.Load();
                Console.WriteLine("Current value of 'myInteger': " + settings.myInteger);
                Console.WriteLine("Incrementing 'myInteger'...");
                settings.myInteger++;
                Console.WriteLine("Saving settings...");
                settings.Save();
                Console.WriteLine("Done.");
                Console.ReadKey();
            }
    
            class MySettings : AppSettings<MySettings>
            {
                public string myString = "Hello World";
                public int myInteger = 1;
            }
        }
    
        public class AppSettings<T> where T : new()
        {
            private const string DEFAULT_FILENAME = "settings.json";
    
            public void Save(string fileName = DEFAULT_FILENAME)
            {
                File.WriteAllText(fileName, (new JavaScriptSerializer()).Serialize(this));
            }
    
            public static void Save(T pSettings, string fileName = DEFAULT_FILENAME)
            {
                File.WriteAllText(fileName, (new JavaScriptSerializer()).Serialize(pSettings));
            }
    
            public static T Load(string fileName = DEFAULT_FILENAME)
            {
                T t = new T();
                if(File.Exists(fileName))
                    t = (new JavaScriptSerializer()).Deserialize<T>(File.ReadAllText(fileName));
                return t;
            }
        }
    }
    

    The registry is a no-go. You're not sure whether the user which uses your application, has sufficient rights to write to the registry.

    You can use the app.config file to save application-level settings (that are the same for each user who uses your application).

    I would store user-specific settings in an XML file, which would be saved in Isolated Storage or in the SpecialFolder.ApplicationData directory.

    Next to that, as from .NET 2.0, it is possible to store values back to the app.config file.

    链接地址: http://www.djcxy.com/p/22716.html

    上一篇: 重新部署ClickOnce部署

    下一篇: 在Windows窗体应用程序中保存应用程序设置的最佳做法