Celsius to Fahrenheit GUI
Celsius to Fahrenheit GUI
Create a GUI that converts Celsius temperatures to Fahrenheit. Your GUI should:
ï‚· have two textboxes, one for city and one for Celsius temperature; ï‚· get city and temperature from the two textboxes;
ï‚· parse the temperature to a double variable;
ï‚· in the event handler o calculate the temperature in degrees Fahrenheit.
The formula is F = ( 9.0 5.0 C) + 32.0. o set the text for a label displaying the city and the Fahrenheit temperature.

