对话框上的 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);
相关文章