Tengo un pequeño código. Se trata de cambiar los valores de Location y Size al pulsar el mismo botón.
Lo que no se hacer y quiero aprender, es saber como guardar los valores en un XML.
Código
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; using System.Xml; namespace Tamaño_Boton { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { } private void button2_Click(object sender, EventArgs e) { try { XmlWriter w = XmlWriter.Create("Config.xml"); w.WriteStartElement("Form1"); // Código aquí. w.WriteEndElement(); w.Close(); } catch (IOException) { // bla, bla, bla... } } private void Form1_Load(object sender, EventArgs e) { try { XmlReader r = XmlReader.Create("Config.xml"); r.ReadStartElement("Form1"); // Código aquí. r.ReadEndElement(); r.Close(); } catch { // No se encuentra el archivo. } } } }
Saludo.