向 CMFCToolBar 按钮添加下拉箭头

发布于 2024-07-15 20:40:13 字数 202 浏览 4 评论 0原文

任何人都可以解释如何向 CMFCToolBar 工具栏按钮添加下拉箭头 - 例如撤消/重做按钮。 我们通过使用 TBSTYLE_EX_DRAWDDARROWS 样式和 TBN_DROPDOWN 通知在 CToolBar 中实现了这一点。 这似乎不适用于 CMFCToolBar。 我相信这些下拉箭头已添加到 VisualStudioDemo MFC 功能包演示中,但我不知道如何添加。

Can anyone explain how to add dropdown arrows to CMFCToolBar toolbar buttons - like for undo/redo buttons. We had this with CToolBar by using the TBSTYLE_EX_DRAWDDARROWS style and TBN_DROPDOWN notification. This doesn't seem to work with CMFCToolBar. These dropdown arrows i believe are added to the VisualStudioDemo MFC feature pack demo but i can not figure out how.

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

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

发布评论

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

评论(1

坦然微笑 2024-07-22 20:40:13

在 VisualStudioDemo 示例中,在 CMainFrame::OnToolbarReset 中,他们将工具栏的撤消按钮替换为名为 CUndoButton 的自定义类,如下所示:

m_wndToolBar.ReplaceButton(ID_EDIT_UNDO, CUndoButton(ID_EDIT_UNDO, _T("&Undo")));

CUndoButton 在文件 中声明示例项目的“UndoBar.h”,因此您可以根据需要使用它或更改它。

In the VisualStudioDemo sample, in CMainFrame::OnToolbarReset they replace the Undo button of the toolbar with a custom class called CUndoButton, like this:

m_wndToolBar.ReplaceButton(ID_EDIT_UNDO, CUndoButton(ID_EDIT_UNDO, _T("&Undo")));

CUndoButton is declared in file "UndoBar.h" of the sample project, so you can use it or change it however you like.

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