I have a DataGridView
populated with a BindingList
. This list gets saved into the Settings file. It saves and loads correctly.. but will only save the first time I call Properties.Settings.Save()
. After that, calling Save()
will do nothing.
I have verified that Save()
is being called, and that at the time it's called the BindingList
contains the correct data. Regardless of whether I add or remove from, or edit elements in, the list, it will only save to user.config on the first call. After that, user.config is not even opened for editing.
Does anyone know why this would happen?