帮帮,这是什么意思?
HBRUSH CListDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
//HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
if(m_Edit.m_hWnd==pWnd->m_hWnd);
{ pDC->SetTextColor(RGB(255,0,0));
pDC->SetBkColor(RGB(255,255,255));
return(HBRUSH)
}
// TODO: Change any attributes of the DC here
// TODO: Return a different brush if the default is not desired
CFrameWnd::OnCtlColor( pDC, pWnd, nCtlColor);
}
上面的m_hWnd意思相同吗?具体指什么?