wxBoxSizer* WxBoxSizer1 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(WxBoxSizer1);
this->SetAutoLayout(TRUE);
WxButton1 = new wxButton(this, ID_WXBUTTON1, _("have to have a long title") , wxDefaultPosition, wxDefaultSize );
WxButton1->SetFont(wxFont(8, wxSWISS ,wxNORMAL,wxBOLD,FALSE));
WxBoxSizer1->Add(WxButton1,0,wxALIGN_CENTER_HORIZONTAL | wxALL,5);
GetSizer()->Fit(this);
GetSizer()->SetSizeHints(this);
|