15,980
社区成员




void CParentWnd::OnMove(int x, int y)
{
CDialog::OnMove(x, y);
if(NULL == m_pChileWnd)
return;
CRect rcClient;
GetClientRect(rcClient);
ClientToScreen(rcClient);
m_pChileWnd->MoveWindow(rcClient);
m_pChileWnd->ShowWindow(SW_SHOW);
}