+ wxPanel *panel3 = new wxPanel(notebook, -1);
+ panel3->SetBackgroundColour(wxColour("WHITE"));
+ notebook->AddPage(panel3, "Goat");
+
+ wxPanel *panel4 = new wxPanel(notebook, -1);
+ panel4->SetBackgroundColour(wxColour("YELLOW"));
+ notebook->AddPage(panel4, "Sheep");
+
+ wxPanel *panel5 = new wxPanel(notebook, -1);
+ panel5->SetBackgroundColour(wxColour("MAGENTA"));
+ (void)new wxStaticText(panel5, -1, "This page has been inserted, not added", wxPoint(10, 10) );
+ notebook->InsertPage(0, panel5, "Sheep");