我一直在努力将自定义类的自定义集合添加到我的winforms项目的应用程序设置中,我觉得我已经尝试了六种不同的方式,包括this way,{{3 }},this way和this way但似乎没有任何效果......
目前代码符合,运行正常 - 任何地方都没有例外。编写他的保存功能,但在设置xml文件中没有创建条目(我有一些其他设置,它适用于所有这些,但这一个FYI)。加载时,Properties.Settings.Default.LastSearches
始终为空...有什么想法吗?
继承我目前的代码:
课程:
[Serializable]
public class LastSearch : ISerializable
{
public DateTime Date { get; set; }
public string Hour { get; set; }
public string Log { get; set; }
public string Command { get; set; }
public List<string> SelectedFilters { get; set; }
public List<string> SearchTerms { get; set; }
public List<string> HighlightedTerms { get; set; }
public List<string> ExcludedTerms { get; set; }
public LastSearch(DateTime date, string hour, string log, string command, List<string> selectedFilters,
List<string> searchTerms, List<string> highlightedTerms, List<string> excludedTerms)
{
Date = date.ToUniversalTime();
Hour = hour;
Log = log;
Command = command;
SelectedFilters = selectedFilters;
SearchTerms = searchTerms;
HighlightedTerms = highlightedTerms;
ExcludedTerms = excludedTerms;
}
protected LastSearch(SerializationInfo info, StreamingContext context)
{
Date = info.GetDateTime("Date");
Hour = info.GetString("Hour");
Log = info.GetString("Log");
Command = info.GetString("Command");
SelectedFilters = (List<string>)info.GetValue("SelectedFilters", typeof(List<string>));
SearchTerms = (List<string>)info.GetValue("SearchTerms", typeof(List<string>));
HighlightedTerms = (List<string>)info.GetValue("HighlightedTerms", typeof(List<string>));
ExcludedTerms = (List<string>)info.GetValue("ExcludedTerms", typeof(List<string>));
}
[SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)]
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
info.AddValue("Date", Date);
info.AddValue("Hour", Hour);
info.AddValue("Log", Log);
info.AddValue("Command", Command);
info.AddValue("SelectedFilters", SelectedFilters);
info.AddValue("SearchTerms", SearchTerms);
info.AddValue("HighlightedTerms", HighlightedTerms);
info.AddValue("ExcludedTerms", ExcludedTerms);
}
}
[Serializable]
public class LastSearchCollection : ISerializable
{
public List<LastSearch> Searches { get; set; }
public LastSearchCollection()
{
Searches = new List<LastSearch>();
}
public LastSearchCollection(SerializationInfo info, StreamingContext ctxt)
{
Searches = (List<LastSearch>)info.GetValue("LastSearches", typeof(List<LastSearch>));
}
[SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)]
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
info.AddValue("Searches", Searches);
}
}
写入设置:
if (RecentQueriesToolStripMenuItem.DropDownItems.Count > 0)
{
// Last Search Settings
if (Properties.Settings.Default.LastSearches == null)
Properties.Settings.Default.LastSearches = new LastSearchCollection();
Properties.Settings.Default.LastSearches.Searches.Clear();
foreach (LastSearchMenuItem item in RecentQueriesToolStripMenuItem.DropDownItems)
{
Properties.Settings.Default.LastSearches.Searches.Add(item.SearchData);
}
}
// Save all settings
Properties.Settings.Default.Save();
从设置加载
// Last Searches
if (Properties.Settings.Default.LastSearches != null)
{
int i = 0;
foreach (LastSearch search in Properties.Settings.Default.LastSearches.Searches)
{
LastSearchMenuItem searchMenuItem = new LastSearchMenuItem(search);
RecentQueriesToolStripMenuItem.DropDownItems.Add(searchMenuItem);
RecentQueriesToolStripMenuItem.DropDownItems[i].Click += new EventHandler(RecentSearch_Click);
i++;
}
}
答案 0 :(得分:8)
正如评论中所建议的,link在codeproject.com上有一个关于如何创建自定义用户设置的简单教程。
很高兴我能提供帮助。
答案 1 :(得分:3)
八年多以后,我和您有同样的需求。我使用XML序列化解决了该问题,将自定义集合存储在用户设置中。
这是您的代码采用的示例。
首先,您需要将设置的类型设置为集合类的类型(例如“ MyProject.LastSearchCollection”)。有关如何操作的信息,请参见Why am I unable to select a custom Type for a setting from the same project/assembly as the settings file?。 如果Visual Studio表示找不到您的自定义类,请确保该类是公共的并且具有公共的,无参数的构造函数。
自定义类:
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Runtime.Serialization;
namespace MyProject
{
[SettingsSerializeAs(SettingsSerializeAs.Xml)]
public class LastSearch
{
public DateTime Date { get; set; }
public string Hour { get; set; }
public string Log { get; set; }
public string Command { get; set; }
public List<string> SelectedFilters { get; set; }
public List<string> SearchTerms { get; set; }
public List<string> HighlightedTerms { get; set; }
public List<string> ExcludedTerms { get; set; }
public LastSearch(DateTime date, string hour, string log, string command, List<string> selectedFilters,
List<string> searchTerms, List<string> highlightedTerms, List<string> excludedTerms)
{
Date = date.ToUniversalTime();
Hour = hour;
Log = log;
Command = command;
SelectedFilters = selectedFilters;
SearchTerms = searchTerms;
HighlightedTerms = highlightedTerms;
ExcludedTerms = excludedTerms;
}
protected LastSearch(SerializationInfo info, StreamingContext context)
{
Date = info.GetDateTime("Date");
Hour = info.GetString("Hour");
Log = info.GetString("Log");
Command = info.GetString("Command");
SelectedFilters = (List<string>)info.GetValue("SelectedFilters", typeof(List<string>));
SearchTerms = (List<string>)info.GetValue("SearchTerms", typeof(List<string>));
HighlightedTerms = (List<string>)info.GetValue("HighlightedTerms", typeof(List<string>));
ExcludedTerms = (List<string>)info.GetValue("ExcludedTerms", typeof(List<string>));
}
}
[SettingsSerializeAs(SettingsSerializeAs.Xml)]
public class LastSearchCollection
{
public List<LastSearch> Searches { get; set; }
public LastSearchCollection()
{
Searches = new List<LastSearch>();
}
public LastSearchCollection(SerializationInfo info, StreamingContext ctxt)
{
Searches = (List<LastSearch>)info.GetValue("LastSearches", typeof(List<LastSearch>));
}
}
}
唯一的区别是,我添加了[SettingsSerializeAs(SettingsSerializeAs.Xml)]
属性并删除了序列化功能。
您可能必须将引用System.Configuration
添加到项目中。
保存设置,就像:
LastSearchCollection searches = new LastSearchCollection();
List<string> selectedFilters = new List<string>();
selectedFilters.Add("Filter1");
selectedFilters.Add("Filter2");
selectedFilters.Add("FilterN");
searches.Searches.Add(new LastSearch(DateTime.Now, "7", "Log1", "CommandA", selectedFilters, new List<string>(), new List<string>(), new List<string>()));
searches.Searches.Add(new LastSearch(DateTime.Now, "9", "Log2", "CommandB", new List<string>(), new List<string>(), new List<string>(), new List<string>()));
Properties.Settings.Default.LastSearches = searches;
// Save all settings
Properties.Settings.Default.Save();
然后,写入磁盘的user.config如下所示:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
...
</configSections>
<userSettings>
...
<MyProject.Properties.Settings>
<setting name="LastSearches" serializeAs="Xml">
<value>
<LastSearchCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Searches>
<LastSearch>
<Date>2020-03-01T07:49:44.5512864Z</Date>
<Hour>7</Hour>
<Log>Log1</Log>
<Command>CommandA</Command>
<SelectedFilters>
<string>Filter1</string>
<string>Filter2</string>
<string>FilterN</string>
</SelectedFilters>
<SearchTerms />
<HighlightedTerms />
<ExcludedTerms />
</LastSearch>
<LastSearch>
<Date>2020-03-01T07:49:44.5562864Z</Date>
<Hour>9</Hour>
<Log>Log2</Log>
<Command>CommandB</Command>
<SelectedFilters />
<SearchTerms />
<HighlightedTerms />
<ExcludedTerms />
</LastSearch>
</Searches>
</LastSearchCollection>
</value>
</setting>
</MyProject.Properties.Settings>
</userSettings>
</configuration>