Check out this part of your code:
...
bool radioButton1_CheckedChanged = true;
bool convertToCelsius_CheckChanged = true;
if (radioButton1_CheckedChanged == true)
{
convToF(double.Parse(Current.Text));
...
Won't this always be the case...? Should the first 2 statements be moved elsewhere?