C#设置记住设置

时间:2009-02-06 00:57:12

标签: c# settings

如何让我的程序记住用户设置?

2 个答案:

答案 0 :(得分:4)

你可以:

  • 将设置写入文件
  • 使用Project-> Properties-> Settings ...然后使用

    在VS中创建设置

    Properties.Settings.Default.SettingName =“something”; //设置设置

    this.Text = Properties.Settings.Default.SettingName; //使用设置

答案 1 :(得分:1)

看起来您正在寻找UserScopedSettingAttribute