XElement accountElement = rootControlsElement.Element("account"); accountSelector.DesiredAccount = accountElement.Value;
this is my save function:
rootControlsElement.Add(new XElement("account", (lastAccount != null ? lastAccount.Name : "Sim101")));
Comment