.net在两个程序之间共享配置数据?

时间:2011-12-11 19:20:16

标签: c# .net configuration settings

我正在使用应用程序设置(作为Visual Studio的一部分),但似乎无法使用原始应用程序中的设置获取其他应用程序。

有人可以帮助在.net c#?

中的两个应用程序之间存储一些字符串变量

编辑:似乎我需要在第二个应用程序中添加对我的第一个应用程序的引用以访问Properties.Default设置 - 我该怎么做?

2 个答案:

答案 0 :(得分:3)

如果您想在项目之间共享配置,您只需添加其他项目'as a link'中的文件:右键单击项目>>选择'Add existing file'>>导航到app.config文件>>点击add按钮旁边的下拉菜单,然后选择add as a link

如果你想在两个应用程序之间共享配置,这就是方法

我会有一个共享程序集,其中包含您的设置类。然后,您可以将此类序列化/反序列化为硬盘驱动器上的公共位置:

[XmlRoot()]
public class Settings
{
    private static Settings instance = new Settings();

    private Settings() {}

    /// <summary>
    /// Access the Singleton instance
    /// </summary>
    [XmlElement]
    public static Settings Instance
    {
        get
        {
            return instance;
        }
    }

    /// <summary>
    /// Gets or sets the height.
    /// </summary>
    /// <value>The height.</value>
    [XmlAttribute]
    public int Height { get; set; }

    /// <summary>
    /// Main window status (Maximized or not)
    /// </summary>
    [XmlAttribute]
    public FormWindowState WindowState
    {
        get;
        set;
    }

    /// <summary>
    /// Gets or sets a value indicating whether this <see cref="Settings"/> is offline.
    /// </summary>
    /// <value><c>true</c> if offline; otherwise, <c>false</c>.</value>
    [XmlAttribute]
    public bool IsSomething
    {
        get;
        set;
    }

    /// <summary>
    /// Save setting into file
    /// </summary>
    public static void Serialize()
    {
        // Create the directory
        if (!Directory.Exists(AppTmpFolder))
        {
            Directory.CreateDirectory(AppTmpFolder);
        }

        using (TextWriter writer = new StreamWriter(SettingsFilePath))
        {
            XmlSerializer serializer = new XmlSerializer(typeof(Settings));
            serializer.Serialize(writer, Settings.Instance);
        }
    }

    /// <summary>
    /// Load setting from file
    /// </summary>
    public static void Deserialize()
    {
        if (!File.Exists(SettingsFilePath))
        {
            // Can't find saved settings, using default vales
            SetDefaults();
            return;
        }
        try
        {
            using (XmlReader reader = XmlReader.Create(SettingsFilePath))
            {
                XmlSerializer serializer = new XmlSerializer(typeof(Settings));
                if (serializer.CanDeserialize(reader))
                {
                    Settings.instance = serializer.Deserialize(reader) as Settings;
                }
            }
        }
        catch (System.Exception)
        {
            // Failed to load some data, leave the settings to default
            SetDefaults();
        }
    }
}

您的xml文件将如下所示:

<?xml version="1.0" encoding="utf-8"?>
<Settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Height="738" WindowState="Maximized" IsSomething="false" >
</Settings>

答案 1 :(得分:2)

如果您希望同一个用户对两个应用程序使用相同的设置,或者您希望所有用户共享相同的设置,除标准应用程序外,您还有几个选择:

1)将数据存储在注册表中。您可以将设置设置为用户特定设置或全局设置。

2)存储结构化文件,例如XML文件,其中包含一个标准目录中的设置:所有用户的Environment.SpecialFolder.CommonApplicationData或单个用户的Environment.SpecialFolder.ApplicationData。这将是我将使用的方法。