I couldn't get my event handlers to work because the code is only able to enter the parent class' virtual handler which contains "event.Skip()". I added the following line in the derived class' function:
wxMessageBox("Hello World");
where nothing happens. However, replacing the event.Skip() with the above line in wxcrafter.h file (which is autogenerated by wxCrafter) works.
What needs to be done to get the event handler working? Thanks!