- btn = wxButton(self, 1206, "View Source")
- EVT_BUTTON(self, 1206, self.OnViewSource)
+ btn = wxButton(self, -1, "Print")
+ EVT_BUTTON(self, btn.GetId(), self.OnPrint)
+ subbox.Add(btn, 1, wxGROW | wxALL, 2)
+
+ btn = wxButton(self, -1, "View Source")
+ EVT_BUTTON(self, btn.GetId(), self.OnViewSource)