Класс Info, метод onEventGoingIdle(), обрабатывай любые клавиши и делай потом, что нужно.Например
void onEventGoingIdle()
{
#KeyPressed
;
if (WinApi::isButtonDown(#control) == true)
{
info('CTRL');
}
this.operationProgressClear();
this.endLengthyOperation(true);
}
|