I created a form with just 2 textboxes and a button. In the first one I type a temperature in Fahrenheit and when I press the button "Convert", the program calculates and puts the temperature in Celsius in the other TextBox. It's working fine.
Now I want the program to clear the second TextBox when I start typing in the first TextBox. Below I show just a part of the code, which didn't work. Can anybody help me?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Conv_Temp
{
   public partial class Frm_Principal : Form
   {
      public Frm_Principal()
      {
          InitializeComponent();
      }
      public event EventHandler Leave;
      private void Tb_Temp_Leave(object sender, EventArgs e)
      {
          MessageBox.Show("Leaving TB Tb_Temp");
          Tb_Result.Text="";
      }
   }
}
 
     
     
    