Esempio n. 1
0
 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();
     }
 }
Esempio n. 2
0
 private void Bt_Limpiar_Click(object sender, EventArgs e)
 {
     Tx_pantalla.Clear();
 }