Добавить XAttribute
в конструктор XElement
, например
new XElement("Conn", new XAttribute("Server", comboBox1.Text));
. Вы также можете добавить несколько атрибутов или элементов через конструктор
new XElement("Conn", new XAttribute("Server", comboBox1.Text), new XAttribute("Database", combobox2.Text));
или использоватьМетод добавления XElement
для добавления атрибутов
XElement element = new XElement("Conn");
XAttribute attribute = new XAttribute("Server", comboBox1.Text);
element.Add(attribute);