以下是 GetCountInCategory 方法的一般语法:
int CMFCToolBarsCustomizeDialog::GetCountInCategory(
int iIndex // 类别的索引
) const;
参数说明:
- iIndex: 类别的索引,通常从 0 开始。
使用示例:
CMFCToolBarsCustomizeDialog customizeDialog(pYourToolBar, dwFlags, this);
int commandCount = customizeDialog.GetCountInCategory(0);
这样,就可以获取第一个类别(索引为 0)中的命令数量。确保在调用该方法之前,你已经创建了工具栏对象,并传递了正确的参数。
转载请注明出处:http://www.zyzy.cn/article/detail/20427/MFC/CMFCToolBarsCustomizeDialog