|
在一个GUI对话框中我需要处理一下鼠标的点击和滑动的事件,可无法通过编译
OptionForm->roc_MouseLeftDown = OptionWindowMouseLeftDown;
//--------------------------------------------
//窗口内鼠标点击处理
//--------------------------------------------
bool Game::OptionWindowMouseLeftDown(int x,int y,uint32 key)
{
return true;
}
错误信息如下:
E2247 'Form:roc_MouseLeftDown(int,int,unsigned int)' is not accessible |
|