Wxwidgets Cheatsheet Blog Post

This blog post contains code snippets, wxwidgets terminology etc.

wxFrame -> Main Window

wxApp -> Application class ( single instance )

onInit() -> Called on app start.

Smallest Wxwidgets app.

class Myapp : public wxApp 
{
public:
virtual bool onInit();



}