如何在 MFC 功能包中扩展 CMFCRibbonPanel

发布于 2024-08-08 21:40:38 字数 176 浏览 6 评论 0原文

我想扩展 CMFCRibbonPanel - 但构造函数受保护(我收到以下错误:无法访问类“CMFCRibbonPanel”中声明的受保护成员)。获取 CMFCRibbonPanel 实例的唯一方法是调用“category->AddPanel”,但这样我无法扩展 CMFCRibbonPanel 类。

有什么建议吗?

I want to extend CMFCRibbonPanel - but the constructor is protected (I get the following error: cannot access protected member declared in class 'CMFCRibbonPanel'). The only way to obtain a CMFCRibbonPanel instance is by calling "category->AddPanel", but this way I cannot extend the CMFCRibbonPanel class.

Any suggestions?

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

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

发布评论

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

评论(1

听风吹 2024-08-15 21:40:38

受保护的构造函数可以从派生类中访问。
我的猜测是你的派生类 CTor 也受到保护。
如果你公开的话,应该会起作用。

A protected constructor is accessible from within the derived class.
My guess is that your derived class CTor is protected, too.
If you make it public, that should work.

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