MFC Toolbar on Dialog?(对话框上的 MFC 工具栏?)
问题描述
我已经尝试了所有我能想到的方法来让工具栏显示在我的对话框中...包括尝试使用 CreateWindow 自己创建它...但它不会显示
I have tried everything I can think of to get a toolbar to show up on my dialog... including trying to create it myself with CreateWindow.. but it won't show up
我在资源编辑器中创建了一个对话框,然后为它创建了一个类(尝试从 CDialog 和 CDialogEx 派生).不可以加个CToolbar控件吗?
I created a dialog in the resource editor, and then made a class for it(tried deriving from both CDialog and CDialogEx). Isn't it possible to add a CToolbar control to it?
推荐答案
嗯,有四个步骤.
1、CToolBar m_ToolBar;//同时你创建一个资源(例如 IDR_TOOLBAR1)
2、调用CToolBar的Create函数
2, Call CToolBar's Create function
m_ToolBar.Create(this);
3、调用LoadToolBar函数
3, Call the LoadToolBar function
m_ToolBar.LoadToolBar(IDR_TOOLBAR1);
4、最重要的一步,调用RepositionBars
4, The most important step, call RepositionBars
RepositionBars(AFX_IDW_CONTROLBAR_FIRST, AFX_IDW_CONTROLBAR_LAST, 0);
这篇关于对话框上的 MFC 工具栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:对话框上的 MFC 工具栏?
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07