- wxLayoutConstraints *c = new wxLayoutConstraints;
- c->top.SameAs(this, wxTop);
- c->left.SameAs(this, wxLeft);
- c->right.SameAs(this, wxRight);
- c->height.PercentOf(this, wxHeight, 66);
- m_treeCtrl->SetConstraints(c);
-
- c = new wxLayoutConstraints;
- c->top.Below(m_treeCtrl);
- c->left.SameAs(this, wxLeft);
- c->right.SameAs(this, wxRight);
- c->bottom.SameAs(this, wxBottom);
- textCtrl->SetConstraints(c);
- SetAutoLayout(TRUE);
-