A string de entrada não estava no formato correto

Sou novo em C #, tenho alguns conhecimentos básicos em Java, mas não consigo executar esse código corretament

É apenas uma calculadora básica, mas quando executo o programa VS2008 me dá este erro:

Eu fiz quase o mesmo programa, mas em java usando JSwing e funcionou perfeitament

Aqui está a forma de c #:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace calculadorac
{
    public partial class Form1 : Form
    {

    int a, b, c;
    String resultado;

    public Form1()
    {
        InitializeComponent();
        a = Int32.Parse(textBox1.Text);
        b = Int32.Parse(textBox2.Text);
    }

    private void button1_Click(object sender, EventArgs e)
    {
        add();
        result();
    }

    private void button2_Click(object sender, EventArgs e)
    {
        substract();
        result();
    }

    private void button3_Click(object sender, EventArgs e)
    {
        clear();
    }

    private void add()
    {
        c = a + b;
        resultado = Convert.ToString(c);
    }

    private void substract()
    {
        c = a - b;
        resultado = Convert.ToString(c);
    }

    private void result()
    {
        label1.Text = resultado;
    }

    private void clear()
    {
        label1.Text = "";
        textBox1.Text = "";
        textBox2.Text = "";
    }
}

Qual pode ser o problema? Existe uma maneira de resolvê-lo?

PS: Eu também tentei

a = Convert.ToInt32(textBox1.text);
b = Convert.ToInt32(textBox2.text);

e não funcionou.