private void Bt_suma_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(Tx_pantalla.Text)) { Tx_pantalla.Text = "Digite un valor"; } else { opreador = Bt_suma.Text; n1 = Double.Parse(Tx_pantalla.Text); Tx_pantalla.Clear(); } }
private void Bt_Limpiar_Click(object sender, EventArgs e) { Tx_pantalla.Clear(); }