void LjWnd::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// TODO: Add your message handler code here and/or call default
CClientDC dc(this);
dc.BitBlt(x,y,48,76,mdc,0,0,WHITENESS);
if(nChar==VK_DOWN)
{
y+=20;
if(dir==0)
{
index++;
}
if(index==4)
{
index=0;
}
//else
//
{
//
index=0;
//
dir=0;
//
}
}
mdc->SelectObject(bitmap[dir][index]);
dc.BitBlt(x,y,48,76,mdc,0,0,SRCCOPY);
CFrameWnd::OnKeyDown(nChar, nRepCnt, nFlags);
}