Con este pequeño programa, podremos conertir de dolares a pesos mexicanos rapidamente utilizando una apliacion de windows forms para que luzca como un programa de Windows estandar.
Codigo:
private void button1_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(textBox1.Text)) { MessageBox.Show("Ingresa un valor"); return; } p = double.Parse(textBox1.Text); d = p * 19.10; textBox2.Text = d.ToString("N2"); } private void button2_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(textBox1.Text)) { MessageBox.Show("Ingresa un valor"); return; } d = double.Parse(textBox1.Text); p = p / 19.10; textBox2.Text = p.ToString("N2"); } private void button3_Click(object sender, EventArgs e) { textBox1.Text = ""; textBox2.Text = ""; } private void button4_Click(object sender, EventArgs e) { Close(); }
oliafcjq jf9q
ResponderBorrar