1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
void editeur_de_texte_5Frm::CreateGUIControls()
{
//Do not add custom code between
//GUI Items Creation Start and GUI Items Creation End
//wxDev-C++ designer will remove them.
//Add the custom code before or after the blocks
////GUI Items Creation Start
WxStatusBar1 = new wxStatusBar(this, ID_WXSTATUSBAR1);
WxMenuBar1 = new wxMenuBar();
WxPanel1 = new wxPanel(this, ID_WXPANEL1, wxDefaultPosition, wxDefaultSize);
WxButton1 = new wxButton(WxPanel1, ID_WXBUTTON1, wxT("WxButton1"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, wxT("WxButton1"));
SetStatusBar(WxStatusBar1);
SetTitle(wxT("editeur_de_texte_5"));
SetIcon(wxNullIcon);
SetSize(8,8,449,309);
Center();
////GUI Items Creation End
} |
Partager