How to use alone Standard LibraryPanels and DialogsCButton Internal event handlers?

 

Look at the picture. I want to use them alone. Is there a single example ?

I do not want use them like:

EVENT_MAP_BEGIN(CControlsDialog)
ON_EVENT(ON_CLICK, m_button1, OnClickButton1)
ON_EVENT(ON_CLICK, m_button2, OnClickButton2)
ON_EVENT(ON_CLICK, m_button3, OnClickButton3)
EVENT_MAP_END(CAppDialog)

How to use them? they all virtual function , and I rewrite them, those alway return true any time.

void MyGUI_Button::IsMouseUp()
 {
  if(CButton::OnMouseUp())
    Print(456);
 }