void CNewButton::OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct) 
{
// TODO: Add your message handler code here and/or call default
    CRect rect = lpDrawItemStruct->rcItem;
// CRect rect;
GetClientRect(&rect);
CDC *pDC=CDC::FromHandle(lpDrawItemStruct->hDC);
CBrush bru;
bru.CreateSolidBrush(RGB(255,100,100));
pDC->SelectObject(&bru);
pDC->FillRect(&rect,&bru);
}