+ wxSize textSize = wxSize(150, 200);
+ if (((wxFrame*) wxTheApp->GetTopWindow())->GetMenuBar()->IsChecked(Wizard_LargeWizard))
+ textSize = wxSize(150, wxGetClientDisplayRect().GetHeight() - 200);
+
+
+ wxTextCtrl* textCtrl = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, textSize, wxTE_MULTILINE);
+ mainSizer->Add(textCtrl, 0, wxALL|wxEXPAND, 5);
+
+ SetSizerAndFit(mainSizer);