摘要:
详细参见:使用wxWidgets进行跨平台程序开发 (王强 译)实例:class MyFrame:public wxFrame{ public: MyFrame() { wxButton* button = new wxButton(this, wx_OK, wxT("ok"), wxPoint(200, 200)); }};一个Frame和一个button控件。当收到一个按钮按下去的消息时,先搜索button类的事件表,如果button类没有处理函数时就搜索button类继承树中父类的事件表。当button类继承树中没有处理函数时,这时就搜索其父窗口的事件表如例中的Fr. 阅读全文