I'm pretty new with using settings and try to learn how to use them efficiently. In my application I have a Listbox containing custom objects. When closing my app I would like to save the ListBoxItems to my settings. I tried to use the solution described here.
The custom objects (ConfigItem):
[Serializable()]
public class ConfigItem
{
public string type { get; set; }
public string address { get; set; }
public ConfigItem(string _type, string _address)
{
type = _type;
address = _address;
}
}
Within my settings I have a parameter "Sensors" of type ArrayList which should be filled:
<Setting Name="Sensors" Type="System.Collections.ArrayList" Scope="User">
<Value Profile="(Default)" />
</Setting>
I tried following to get the ListBoxItems stored:
Properties.Settings.Default.Sensors = new ArrayList(ConfigList.Items);
Properties.Settings.Default.Save();
After saving the settings, I opened settings and no data was added:
<setting name="Sensors" serializeAs="Xml">
<value />
</setting>
I don't know where I am going the wrong way. Also, I couldn't figure out a more elegant way to store Objects out of a ListBox.
As the settings are not the right spot to save my user-specific objects I now use StreamReader and StreamWriter:
Saving my Settings:
and loading the settings:
Hope this helps other newbies with the sampe problem.