added simple test for wxStaticBoxSizers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4535 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
1999-11-13 05:07:18 +00:00
parent 07cf98cb8e
commit 3739399733

View File

@@ -285,6 +285,18 @@ NewSizerFrame::NewSizerFrame(wxFrame *frame, char *title, int x, int y ):
wxALL, // and make border all around
5 ); // set border width to 5
// 2.5) Gratuitous test of wxStaticBoxSizers
wxBoxSizer *statsizer = new wxStaticBoxSizer(
new wxStaticBox(this, -1, "A wxStaticBoxSizer"),
wxVERTICAL );
statsizer->Add(
new wxStaticText(this, -1, "And some TEXT inside it"),
0,
wxCENTER |
wxALL,
30);
topsizer->Add(statsizer, 1, wxEXPAND | wxALL, 10);
// 3) middle: create wxStaticLine with minimum size (3x3)
topsizer->Add(