有一类CAcUiDockControlBar中一成员函数:
virtual BOOL
AddCustomMenuItems(    LPARAM hMenu); hMenu Handle of the context menu contained in the low order WORDCalled by the docking system before the context menu of the control bar is displayed, to give you the opportunity to add your own menu options, and/or to remove the existing default menu options. There are two default menu options:
ID_ADUI_ALLOWDOCK: (Value 1). This command allows the user to enable/disable the docking capability of the control bar. If disabled, the control bar is made floating and cannot be docked.
ID_ADUI_HIDEBAR: (Value 2). This command hides the control bar, or closes it if the flag ADUI_DOCK_DESTROY_ON_CLOSE is set when you construct your control bar.Make sure that the custom options you will add to the context menu will not have one of the two values above.请问该怎样用它?(别笑俺先,俺很菜的噢)