Пример #1
0
 private void btnClear_Click(object sender, EventArgs e)
 {
     R1.ReadOnly = false;
     R1.Clear();
     R2.Clear();
     R3.Clear();
     R4.Clear();
     resultado.Clear();
 }
Пример #2
0
 private void btnAcumula_Click(object sender, EventArgs e)
 {
     if (resultado.Text != "")
     {
         acumula     = double.Parse(resultado.Text);
         R1.ReadOnly = true;
         R1.Text     = acumula.ToString("0.00");
         R2.Clear();
         R3.Clear();
         R4.Clear();
     }
     else
     {
         MessageBox.Show("\"Resultado\" vazio");
     }
 }