これは私のコードです:
namespace Class_Properties {
    public partial class Form1 : Form {
        private string firstHeight1 = "";
        public int firstHeight {
            get {
                        return Convert.ToInt32( firstHeight1 );
            }
        }
        public Form1() {
            InitializeComponent();
        }
        private void button1_Click( object sender, EventArgs e ) {
            firstHeight1 = textBox2.Text;
            Form2 secondForm = new Form2();
            secondForm.Show();
        }
    }
}
そして他のクラス:
namespace Class_Properties {
    public partial class Form2 : Form {
        public Form2() {
            InitializeComponent();
            Form1 mainWindow = new Form1();
            this.Height = mainWindow.firstHeight;
        }
    }
}
実行すると、200の値として入力しtextbox2てクリックするbutton1と、VisualStudioは次の例外を表示します。

このエラーを解決するにはどうすればよいですか?