1. Thanks
2. I actually did that, but the results were quite surprising: http://www.250kb.de/images/20040729/8.jpg
Btw, I wrote a little function to do the annoying work for me, maybe some parameters are off?[size=2]wxBoxSizer* staticTextLine(wxWindow* parent, wxString label)
{
wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(new wxStaticText(parent, -1, label), 0);
sizer->Add(new wxStaticLine(parent, -1), 1, wxEXPAND | wxALL, 5);
return sizer;
}
leftSizer->Add(staticTextLine(this, _("Description")), 1, wxEXPAND);
[/size] |