如何获取命令 ID 的键盘加速器?
How to get keyboard accelerators for a command ID?
MFC 功能包似乎神奇地将资源键盘快捷方式打印到菜单项的工具提示中。
我如何找到任何给定命令 ID 的组合键(如果我只有 HACCEL
句柄?)。
您可以使用 CopyAcceleratorTable()
function 检索给定 HACCEL
句柄的加速器列表。
首先,以nullptr
和0
作为第二个和第三个参数调用该函数以获得列表的大小(即加速器的数量),然后分配[=的缓冲区15=] 适当大小的结构。
然后您可以使用指向该缓冲区的指针和先前返回的计数再次调用 CopyAcceleratorTable
。
现在您可以遍历该缓冲区,使用每个结构的三个字段来确定加速键是什么、它有什么标志以及它代表什么命令。
HACCEL hAcc; // Assuming this is a valid handle ...
int nAcc = CopyAcceleratorTable(hAcc, nullptr, 0); // Get number of accelerators
ACCEL *pAccel = new ACCEL[nAcc]; // Allocate the required buffer
CopyAcceleratorTable(hAcc, pAccel, nAcc); // Now copy to that buffer
for (int a = 0; a < nAcc; ++a) {
DWORD cmd = pAccel[a].cmd; // The command ID
WORD key = pAccel[a].key; // The key code - such as 0x41 for the "A" key
WORD flg = pAccel[a].fVirt; // The 'flags' (things like FCONTROL, FALT, etc)
//...
// Format and display the data, as required
//...
}
delete[] pAccel; // Don't forget to free the data when you're done!
您可以在this page.
上看到ACCEL
结构的三个数据字段的值和格式的描述
MFC 功能包似乎神奇地将资源键盘快捷方式打印到菜单项的工具提示中。
我如何找到任何给定命令 ID 的组合键(如果我只有 HACCEL
句柄?)。
您可以使用 CopyAcceleratorTable()
function 检索给定 HACCEL
句柄的加速器列表。
首先,以nullptr
和0
作为第二个和第三个参数调用该函数以获得列表的大小(即加速器的数量),然后分配[=的缓冲区15=] 适当大小的结构。
然后您可以使用指向该缓冲区的指针和先前返回的计数再次调用 CopyAcceleratorTable
。
现在您可以遍历该缓冲区,使用每个结构的三个字段来确定加速键是什么、它有什么标志以及它代表什么命令。
HACCEL hAcc; // Assuming this is a valid handle ...
int nAcc = CopyAcceleratorTable(hAcc, nullptr, 0); // Get number of accelerators
ACCEL *pAccel = new ACCEL[nAcc]; // Allocate the required buffer
CopyAcceleratorTable(hAcc, pAccel, nAcc); // Now copy to that buffer
for (int a = 0; a < nAcc; ++a) {
DWORD cmd = pAccel[a].cmd; // The command ID
WORD key = pAccel[a].key; // The key code - such as 0x41 for the "A" key
WORD flg = pAccel[a].fVirt; // The 'flags' (things like FCONTROL, FALT, etc)
//...
// Format and display the data, as required
//...
}
delete[] pAccel; // Don't forget to free the data when you're done!
您可以在this page.
上看到ACCEL
结构的三个数据字段的值和格式的描述