const wxEventType wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING = wxNewEventType();
const wxEventType wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED = wxNewEventType();
#endif
-const int wxID_CHOICEBOOKCHOICE = wxWindow::NewControlId();
BEGIN_EVENT_TABLE(wxChoicebook, wxBookCtrlBase)
- EVT_CHOICE(wxID_CHOICEBOOKCHOICE, wxChoicebook::OnChoiceSelected)
+ EVT_CHOICE(wxID_ANY, wxChoicebook::OnChoiceSelected)
END_EVENT_TABLE()
// ============================================================================
m_bookctrl = new wxChoice
(
this,
- wxID_CHOICEBOOKCHOICE,
+ wxID_ANY,
wxDefaultPosition,
wxDefaultSize
);
void wxChoicebook::OnChoiceSelected(wxCommandEvent& eventChoice)
{
+ if ( eventChoice.GetEventObject() != m_bookctrl )
+ {
+ eventChoice.Skip();
+ return;
+ }
+
const int selNew = eventChoice.GetSelection();
if ( selNew == m_selection )