我正在尝试使用选项卡为我的应用程序保存设置。每个选项卡显示来自路径的一些数据。我这样存储它:
private Dictionary<int, string> _listTabs = new Dictionary<int, string>();
当我创建新标签时,我在字典中添加新项目
_listTabs.Add(listTabs.Count++,CurrentPath);
在关闭程序之前,我想将此字典保存在设置中:
foreach(KeyValuePair kvp in _listTabs)
{
var property = new SettingsProperty(kvp.Key);
property.DefaultValue = kvp.Value;
Settings.Default.Properties.Add(property);
}
Settings.Defaut.Save();
但是,它不起作用。错误在哪里?