Displaying 1 result from an estimated 1 matches for "sizertestfram".
Did you mean:
  sizertestframe
  
2006 Apr 23
5
Re: StaticBoxSizer bug?
...> than I at hacking the wxruby2 source.
>
> daniel
>
>   
> ------------------------------------------------------------------------
>
> #include <wx/wx.h>
>
> class SizerTestApp : public wxApp {
> public:
>   virtual bool OnInit();
> };
>
> class SizerTestFrame : public wxFrame {
> public:
>   SizerTestFrame(const wxString & title);
> };
>
> IMPLEMENT_APP(SizerTestApp);
>
> bool SizerTestApp::OnInit() {
>   SizerTestFrame *frame = new SizerTestFrame("Test");
>
>   frame->Show(true);
>
>   return true;...