vote up 1 vote down star

Hi,

i'm looking for a trick to remove an CMFCRibbonPanel from CMFCRibbonCategory. There is just AddPanel() function in the CMFCRibbonCategory, but no RemovePanel().

Do I really need to rebuild my whole CMFCRibbonCategory to do this?

EDIT:

Just for clarification, what i want is to remove panel itself from the category and not the elements from the panel.

flag

78% accept rate

2 Answers

vote up 2 vote down

In my case I did end up rebuilding the category from scratch. In the CMFCRibbonCategory source code (look for afxribboncategory.cpp) there is no apparent way to remove a panel from the panels array.

link|flag
Yea, I also end up by this solution! I added connect request! Please vote here: connect.microsoft.com/VisualStudio/feedback/… – mem64k Mar 6 at 12:14
Me too. But I didn't really mind because I wanted to remove ALL panels, so I just added a new category and removed the old one. But still not as good as CMFCCategory::RemoveAllPanels would have been... – demoncodemonkey Mar 27 at 14:50
vote up 0 vote down

I don't know anything about CMFCRibbonPanel and CMFCRibbonCategory. After seeing the class declaration in MSDN I thought you can get a reference to CMFCRibbonPanel from CMFCRibbonCategory and call CMFCRibbonPanel::RemoveAll on the pointer.

CMFCRibbonCategory *pCategory = m_wndRibbonBar.GetCategory(0);

if (pCategory)
{
     CMFCRibbonPanel *pPanel = pCategory->GetPanel(0);

     if (pPanel)
     {
        pPanel->RemoveAll();
        m_wndRibbonBar.AdjustSizeImmediate();
     }
}
link|flag
I want to remove pPanel itself and not the elements in the panel. BTW: You should use while (pPanel->GetCount()) { VERIFY(pPanel->Remove(0)); } insted of pPanel->RemoveAll(); see connect.microsoft.com/VisualStudio/feedback/… – mem64k Feb 26 at 16:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.