我可以修改[appname] .exe.config而无需手动读/写XMl吗?

时间:2009-05-15 10:46:36

标签: c# .net

我使用.NET 3.5和Visual Studio 2008 Express在C#应用程序中创建了一些设置。我有许多应用程序作用域设置,我希望能够在应用程序中进行修改 - 我可以通过Properties.Settings.Default访问它们,但它们只是按预期读取。我不想让它们成为用户范围的设置,因为它们应该是应用程序范围的。如果没有加载XML并自己读取/写入它,这是否可行?

我见过使用System.Configuration.ConfigurationManager.OpenExeConfiguration的示例,但是配置xml看起来与我使用的格式不同(这是旧版本的吗?)

由于


修改

我发现我可以修改这样做的值,但这似乎是一个荒谬的黑客。

Configuration config = ConfigurationManager.OpenExeConfiguration(Application.ExecutablePath);
SettingElementCollection settingElements = ((ClientSettingsSection)config.GetSectionGroup("applicationSettings").Sections[0]).Settings;

SettingElement element = settingElements.Get("SettingName");
element.Value.ValueXml.InnerText = "new value";

config.Save(ConfigurationSaveMode.Modified, true);

2 个答案:

答案 0 :(得分:1)

OpenExeConfiguration(或任何其他ConfigurationManager方法)是对配置文件进行大多数修改的首选入口点。获得Configuration实例后,您应该获得要修改的部分,并在修改后调用任何ConfigurationManager.Save方法。但是,无法以这种方式检索applicationSettings部分。

没有用于更改applicationSettings文件中app.config部分设置的API。只能以这种方式更改用户范围的设置。

因此,实际更改这些设置只能通过直接操作app.config XML文件来完成。

由于Properties.Settings.Default的索引属性实际上是可写的,因此可能会出现一些混淆。以下是完全合法的:

Properties.Settings.Default["MySetting"] = "New setting value";
Properties.Settings.Default.Save();

但是,设置不会被保存。

答案 1 :(得分:1)

您还可以使用Windows注册表来存储特定于应用程序的状态。注册表中有每个用户和每个计算机的密钥 - 您可以使用其中一个或两个。例如,有些人在退出时使用注册表来存储应用程序窗口的位置和大小。然后,当重新启动应用程序时,您可以根据窗口的最后已知大小来定位和调整窗口大小。这是您可以在注册表中存储的那种状态的一个小示例。

为此,您将使用不同的API进行存储和检索。特别是SetValue和GetValue调用Microsoft.Win32.RegistryKey类。可能有一些库有助于将复杂状态持久化到注册表。如果您有简单的案例(一些字符串和数字),那么很容易就自己做。

  private static string _AppRegyPath = "Software\\Vendor Name\\Application Name";

  public Microsoft.Win32.RegistryKey AppCuKey
  {
      get
      {
          if (_appCuKey == null)
          {
              _appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(_AppRegyPath, true);
              if (_appCuKey == null)
                  _appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(_AppRegyPath);
          }
          return _appCuKey;
      }
      set { _appCuKey = null; }
  }


  private void RetrieveAndApplyState()
  { 
      string s = (string)AppCuKey.GetValue("textbox1Value");
      if (s != null) this.textbox1.Text = s;

      s = (string)AppCuKey.GetValue("Geometry");
      if (!String.IsNullOrEmpty(s))
      {
          int[] p = Array.ConvertAll<string, int>(s.Split(','),
                           new Converter<string, int>((t) => { return Int32.Parse(t); }));
          if (p != null && p.Length == 4)
          {
              this.Bounds = ConstrainToScreen(new System.Drawing.Rectangle(p[0], p[1], p[2], p[3]));
          }
      }
  }

  private void SaveStateToRegistry()
  {
      AppCuKey.SetValue("textbox1Value", this.textbox1.Text);

      int w = this.Bounds.Width;
      int h = this.Bounds.Height;
      int left = this.Location.X;
      int top = this.Location.Y;

      AppCuKey.SetValue("Geometry", String.Format("{0},{1},{2},{3}", left, top, w, h);
  }


  private System.Drawing.Rectangle ConstrainToScreen(System.Drawing.Rectangle bounds)
  {
      Screen screen = Screen.FromRectangle(bounds);
      System.Drawing.Rectangle workingArea = screen.WorkingArea;
      int width = Math.Min(bounds.Width, workingArea.Width);
      int height = Math.Min(bounds.Height, workingArea.Height);
      // mmm....minimax            
      int left = Math.Min(workingArea.Right - width, Math.Max(bounds.Left, workingArea.Left));
      int top = Math.Min(workingArea.Bottom - height, Math.Max(bounds.Top, workingArea.Top));
      return new System.Drawing.Rectangle(left, top, width, height);
  }

该代码使用Microsoft.Win32.Registry.CurrentUser,因此它设置和检索用户特定的应用程序设置。如果您正在设置或检索机器范围的状态,则需要Microsoft.Win32.Registry.LocalMachine。