向 CMFCToolBar 按钮添加下拉箭头
任何人都可以解释如何向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 VisualStudioDemo 示例中,在
CMainFrame::OnToolbarReset
中,他们将工具栏的撤消按钮替换为名为 CUndoButton 的自定义类,如下所示: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:CUndoButton
is declared in file"UndoBar.h"
of the sample project, so you can use it or change it however you like.