Resource sample works now, apart from

wxRadioBox, which is #ifdef 0 in
   resource.cpp
  Fixed tiny thing in resource.cpp


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@544 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-08-15 12:06:45 +00:00
parent c33c405087
commit 8d71b5552e
6 changed files with 45 additions and 11 deletions

View File

@@ -21,6 +21,16 @@ class MyApp: public wxApp
bool OnInit(void);
};
class MyPanel: public wxPanel
{
public:
MyPanel( wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
int style, const wxString &name );
void OnClick(wxMouseEvent &event);
DECLARE_EVENT_TABLE()
};
class MyFrame: public wxFrame
{
public: