画一个指定填充色的矩形(无边框)

SDK版本的:
HDC hDC=GetDC(hwnd);
HBRUSH hBrush=CreateSolidBrush(RGB(122,122,122));
RECT rect;
rect.bottom=0;
rect.left=0;
rect.right=100;
rect.top=100;
FillRect(hDC,&rect,hBrush);


MFC版本的:
CClientDC dc(this);
HBRUSH hBrush=CreateSolidBrush(RGB(122,122,122));
CBrush brush(RGB(122,122,122));
CRect rect(0,0,100,100);
dc.FillRect(&rect,&brush);

你可能感兴趣的:(画一个指定填充色的矩形(无边框))