是否可以从 CMFCRibbonCategory 中删除 CMFCRibbonPanel?

发布于 2024-07-14 14:40:00 字数 286 浏览 6 评论 0原文

我正在寻找从 CMFCRibbonCategory 中删除 CMFCRibbonPanel 的技巧。 CMFCRibbonCategory 中只有 AddPanel() 函数,但没有 RemovePanel()

我真的需要重建整个 CMFCRibbonCategory 才能执行此操作吗?

只是为了澄清,我想要的是从类别中删除面板本身,而不是面板中的元素。

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

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

走野 2024-07-21 14:40:00

就我而言,我最终确实从头开始重建了该类别。 在 CMFCRibbonCategory 源代码(查找 afxribboncategory.cpp)中,没有明显的方法可以从面板数组中删除面板。

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.

深海夜未眠 2024-07-21 14:40:00

我对 CMFCRibbonPanelCMFCRibbonCategory 一无所知。 在 MSDN 中看到类声明后,我认为您可以从 CMFCRibbonCategory 获取对 CMFCRibbonPanel 的引用,并在指针上调用 CMFCRibbonPanel::RemoveAll

CMFCRibbonCategory *pCategory = m_wndRibbonBar.GetCategory(0);

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

     if (pPanel)
     {
        pPanel->RemoveAll();
        m_wndRibbonBar.AdjustSizeImmediate();
     }
}

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();
     }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文