Windows Forms: Live Currency Converter in C#

How to Create a live currency converter or exchange rate in C#

Step 1Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "LiveCurrencyConverter" and then click OK

live currency converterStep 2: You need to add a web browser control to your form as below

live currency converter

Add code to handle form load event

private void Form1_Load(object sender, EventArgs e)
{
    webBrowser.Navigate("https://www.google.com/finance/converter");
}

VIDEO TUTORIALS