private void button2_Click(object sender, EventArgs e) { textBox3.Text = Operaciones.Division(textBox1.Text, textBox2.Text); }
private void button3_Click(object sender, EventArgs e) { textBox3.Text = Operaciones.Potencia(textBox1.Text, textBox2.Text); }
private void button1_Click(object sender, EventArgs e) { textBox3.Text = Operaciones.Producto(textBox1.Text, textBox2.Text); }