1,662
社区成员
发帖
与我相关
我的任务
分享 while (GetMessage (&msg, NULL, 0, 0))
{
if (/*!TranslateMDISysAccel (hwndClient, &msg) &&*/ // 注释掉这一句发现加速键照常运作
!TranslateAccelerator (hwndFrame, hAccel, &msg))
{
TranslateMessage (&msg) ;
DispatchMessage (&msg) ;
}
}
