Alright I figured it out...
I used something along these lines for anyone that maybe searched and found this thread:
CPaintDC dc(this);
CRect rect(5,10,150,170);
CBrush brush(COLORREF(0x0000BBBB));
CWnd *lpStaticWnd;
CRect static_rect;
lpStaticWnd = GetDlgItem(IDC_STATIC1);
lpStaticWnd -> GetWindowRect(&static_rect);
ScreenToClient(&static_rect);
dc.IntersectClipRect(&static_rect);
dc.FillRect(&rect,&brush);